Skip to content

Commit

Permalink
Add Cerberus boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
Enovale committed Oct 17, 2020
1 parent 17c662d commit 25b7a19
Show file tree
Hide file tree
Showing 6 changed files with 114 additions and 49 deletions.
13 changes: 13 additions & 0 deletions .idea/.idea.Alibi/.idea/contentModel.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

110 changes: 61 additions & 49 deletions .idea/.idea.Alibi/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions Alibi.Plugins.Cerberus/Alibi.Plugins.Cerberus.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Alibi.Plugins.API\Alibi.Plugins.API.csproj" />
</ItemGroup>

</Project>
7 changes: 7 additions & 0 deletions Alibi.Plugins.Cerberus/CerberusConfiguration.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
namespace Alibi.Plugins.Cerberus
{
public class CerberusConfiguration
{
//public int
}
}
16 changes: 16 additions & 0 deletions Alibi.Plugins.Cerberus/MainPlugin.cs
Original file line number Diff line number Diff line change
@@ -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
}
}
}
6 changes: 6 additions & 0 deletions Alibi.sln
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 25b7a19

Please sign in to comment.