top of page
Zeres Plugin Library New! (Validated – SERIES)
[Plugin("My Plugin", Author = "Jane", Version = "1.0.0")] public class MyPlugin : PluginBase ... The main engine that discovers, validates, and instantiates plugins. Getting Started (Step-by-Step) Step 1: Install the Library Via NuGet Package Manager:
private IAppHost host;
public void Log(string message) => Console.WriteLine($"[HOST] message"); public string GetConfig(string key) => ConfigurationManager.AppSettings[key]; using ZeresPluginLibrary; [Plugin("HelloWorld", Author = "Dev", Version = "1.0.0")] public class HelloWorldPlugin : PluginBase zeres plugin library
bottom of page
