Projektdateien hinzufügen.

This commit is contained in:
2024-05-16 10:30:15 +02:00
parent 736c31a7bb
commit fe03628377
5 changed files with 74 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using Pilz.Plugins;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OwnChar.Plugins
{
public interface IOwnCharPlugin : IPlugin
{
public string ID { get; }
public object? GetApi();
}
}

View File

@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Pilz.Plugins" Version="2.1.5" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,8 @@
using Pilz.Plugins;
namespace OwnChar.Plugins
{
public class OwnCharPlugins : PluginManager<IOwnCharPlugin, PluginRuntimeInfo>
{
}
}

View File

@@ -0,0 +1,13 @@
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>
{
}
}