From 25b7a19a399324ab28462716095c5152d95e4fd1 Mon Sep 17 00:00:00 2001 From: Elijah Bansley <17408285+ElijahZAwesome@users.noreply.github.com> Date: Sat, 17 Oct 2020 01:07:41 -0500 Subject: [PATCH] Add Cerberus boilerplate --- .idea/.idea.Alibi/.idea/contentModel.xml | 13 +++ .idea/.idea.Alibi/.idea/workspace.xml | 110 ++++++++++-------- .../Alibi.Plugins.Cerberus.csproj | 11 ++ .../CerberusConfiguration.cs | 7 ++ Alibi.Plugins.Cerberus/MainPlugin.cs | 16 +++ Alibi.sln | 6 + 6 files changed, 114 insertions(+), 49 deletions(-) create mode 100644 Alibi.Plugins.Cerberus/Alibi.Plugins.Cerberus.csproj create mode 100644 Alibi.Plugins.Cerberus/CerberusConfiguration.cs create mode 100644 Alibi.Plugins.Cerberus/MainPlugin.cs diff --git a/.idea/.idea.Alibi/.idea/contentModel.xml b/.idea/.idea.Alibi/.idea/contentModel.xml index ae181e0..fddbd67 100644 --- a/.idea/.idea.Alibi/.idea/contentModel.xml +++ b/.idea/.idea.Alibi/.idea/contentModel.xml @@ -102,6 +102,19 @@ + + + + + + + + + + + + + diff --git a/.idea/.idea.Alibi/.idea/workspace.xml b/.idea/.idea.Alibi/.idea/workspace.xml index 3b64522..1cfbd75 100644 --- a/.idea/.idea.Alibi/.idea/workspace.xml +++ b/.idea/.idea.Alibi/.idea/workspace.xml @@ -23,16 +23,12 @@ + + + - - - - - - - - + + + + + @@ -146,7 +149,7 @@ - + @@ -168,6 +171,7 @@ + @@ -183,86 +187,94 @@ - + + + + + + + + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + diff --git a/Alibi.Plugins.Cerberus/Alibi.Plugins.Cerberus.csproj b/Alibi.Plugins.Cerberus/Alibi.Plugins.Cerberus.csproj new file mode 100644 index 0000000..4d21446 --- /dev/null +++ b/Alibi.Plugins.Cerberus/Alibi.Plugins.Cerberus.csproj @@ -0,0 +1,11 @@ + + + + netcoreapp3.1 + + + + + + + diff --git a/Alibi.Plugins.Cerberus/CerberusConfiguration.cs b/Alibi.Plugins.Cerberus/CerberusConfiguration.cs new file mode 100644 index 0000000..8da168d --- /dev/null +++ b/Alibi.Plugins.Cerberus/CerberusConfiguration.cs @@ -0,0 +1,7 @@ +namespace Alibi.Plugins.Cerberus +{ + public class CerberusConfiguration + { + //public int + } +} \ No newline at end of file diff --git a/Alibi.Plugins.Cerberus/MainPlugin.cs b/Alibi.Plugins.Cerberus/MainPlugin.cs new file mode 100644 index 0000000..91f7b37 --- /dev/null +++ b/Alibi.Plugins.Cerberus/MainPlugin.cs @@ -0,0 +1,16 @@ +using System; +using Alibi.Plugins.API; + +namespace Alibi.Plugins.Cerberus +{ + public class MainPlugin : Plugin + { + public override string ID => "com.elijahzawesome.Cerberus"; + public override string Name => "Cerberus"; + + public override void Initialize() + { + // stub + } + } +} \ No newline at end of file diff --git a/Alibi.sln b/Alibi.sln index 21dcd99..e68dd2c 100644 --- a/Alibi.sln +++ b/Alibi.sln @@ -9,6 +9,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Alibi.Plugins.Webhook", "Al EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Alibi.Plugins.API", "Alibi.Plugins.API\Alibi.Plugins.API.csproj", "{C1660F68-3977-49A4-A71C-2511F0E7C71A}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Alibi.Plugins.Cerberus", "Alibi.Plugins.Cerberus\Alibi.Plugins.Cerberus.csproj", "{A7280021-C17B-431C-A303-A18E70B8AE57}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -27,6 +29,10 @@ Global {C1660F68-3977-49A4-A71C-2511F0E7C71A}.Debug|Any CPU.Build.0 = Debug|Any CPU {C1660F68-3977-49A4-A71C-2511F0E7C71A}.Release|Any CPU.ActiveCfg = Release|Any CPU {C1660F68-3977-49A4-A71C-2511F0E7C71A}.Release|Any CPU.Build.0 = Release|Any CPU + {A7280021-C17B-431C-A303-A18E70B8AE57}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A7280021-C17B-431C-A303-A18E70B8AE57}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A7280021-C17B-431C-A303-A18E70B8AE57}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A7280021-C17B-431C-A303-A18E70B8AE57}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE