Library: Zeres Plugin
Install-Package ZeresPluginLibrary Or via .NET CLI:
// SharedContracts.dll public interface IAppHost zeres plugin library
void Log(string message); string GetConfig(string key); Install-Package ZeresPluginLibrary Or via
dotnet add package ZeresPluginLibrary Create a shared interface that both host and plugins reference: string GetConfig(string key)
public abstract class PluginBase
Introduction In modern software development, extensibility is key. Allowing third-party developers to extend your application without touching its core code is a hallmark of robust architecture. The Zeres Plugin Library (often referred to as ZeresPluginLibrary ) is a powerful, open-source .NET library designed specifically to simplify the creation, loading, and management of plugins in C# and VB.NET applications.
private IAppHost host;
