Making plugin system more robust

This commit is contained in:
2024-06-30 13:59:40 +02:00
parent f329b00687
commit c220c214d2
10 changed files with 124 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
namespace MycroForge.Plugin.Template.Package;
public class Class1
{
}

View File

@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>