Skip to content

Commit 25b7a19

Browse files
committed
Add Cerberus boilerplate
1 parent 17c662d commit 25b7a19

File tree

6 files changed

+114
-49
lines changed

6 files changed

+114
-49
lines changed

.idea/.idea.Alibi/.idea/contentModel.xml

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.idea.Alibi/.idea/workspace.xml

Lines changed: 61 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
</PropertyGroup>
6+
7+
<ItemGroup>
8+
<ProjectReference Include="..\Alibi.Plugins.API\Alibi.Plugins.API.csproj" />
9+
</ItemGroup>
10+
11+
</Project>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
namespace Alibi.Plugins.Cerberus
2+
{
3+
public class CerberusConfiguration
4+
{
5+
//public int
6+
}
7+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using System;
2+
using Alibi.Plugins.API;
3+
4+
namespace Alibi.Plugins.Cerberus
5+
{
6+
public class MainPlugin : Plugin
7+
{
8+
public override string ID => "com.elijahzawesome.Cerberus";
9+
public override string Name => "Cerberus";
10+
11+
public override void Initialize()
12+
{
13+
// stub
14+
}
15+
}
16+
}

Alibi.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Alibi.Plugins.Webhook", "Al
99
EndProject
1010
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Alibi.Plugins.API", "Alibi.Plugins.API\Alibi.Plugins.API.csproj", "{C1660F68-3977-49A4-A71C-2511F0E7C71A}"
1111
EndProject
12+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Alibi.Plugins.Cerberus", "Alibi.Plugins.Cerberus\Alibi.Plugins.Cerberus.csproj", "{A7280021-C17B-431C-A303-A18E70B8AE57}"
13+
EndProject
1214
Global
1315
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1416
Debug|Any CPU = Debug|Any CPU
@@ -27,6 +29,10 @@ Global
2729
{C1660F68-3977-49A4-A71C-2511F0E7C71A}.Debug|Any CPU.Build.0 = Debug|Any CPU
2830
{C1660F68-3977-49A4-A71C-2511F0E7C71A}.Release|Any CPU.ActiveCfg = Release|Any CPU
2931
{C1660F68-3977-49A4-A71C-2511F0E7C71A}.Release|Any CPU.Build.0 = Release|Any CPU
32+
{A7280021-C17B-431C-A303-A18E70B8AE57}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
33+
{A7280021-C17B-431C-A303-A18E70B8AE57}.Debug|Any CPU.Build.0 = Debug|Any CPU
34+
{A7280021-C17B-431C-A303-A18E70B8AE57}.Release|Any CPU.ActiveCfg = Release|Any CPU
35+
{A7280021-C17B-431C-A303-A18E70B8AE57}.Release|Any CPU.Build.0 = Release|Any CPU
3036
EndGlobalSection
3137
GlobalSection(SolutionProperties) = preSolution
3238
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)