plugin shit

This commit is contained in:
2024-05-16 11:47:30 +02:00
parent fe03628377
commit bd5d50bdad
3 changed files with 4 additions and 15 deletions

View File

@@ -7,7 +7,7 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Pilz.Plugins" Version="2.1.5" /> <PackageReference Include="Pilz.Plugins" Version="2.1.8" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@@ -1,8 +1,10 @@
using Pilz.Plugins; using Pilz.Plugins;
using System.Reflection;
namespace OwnChar.Plugins namespace OwnChar.Plugins
{ {
public class OwnCharPlugins : PluginManager<IOwnCharPlugin, PluginRuntimeInfo> public class OwnCharPlugins : PluginManager<IOwnCharPlugin, PluginRuntimeInfo<IOwnCharPlugin>>
{ {
public static OwnCharPlugins Instance { get; } = new();
} }
} }

View File

@@ -1,13 +0,0 @@
using Pilz.Plugins;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OwnChar.Plugins
{
public class PluginRuntimeInfo : PluginRuntimeInfo<IOwnCharPlugin>
{
}
}