Create C# Plugin

Steps:

  1. Create a new C# class library project: dotnet ...;
  2. Write a static class:
public static class MyPlugin
{
  public static int GetValue() => 15;
}
  1. Publish the assembly: dotnet publish;
  2. Put the dll to DivookaDistribution/<MyPlugin>/<MyPlugin>.dll.

(Add screenshots)

References

Read more on the topic on the Plugin development page.