Create C# Plugin
Steps:
- Create a new C# class library project:
dotnet ...; - Write a static class:
public static class MyPlugin
{
public static int GetValue() => 15;
}
- Publish the assembly:
dotnet publish; - Put the dll to
DivookaDistribution/<MyPlugin>/<MyPlugin>.dll.
(Add screenshots)
References
Read more on the topic on the Plugin development page.