An open API service indexing awesome lists of open source software.

https://github.com/marfusios/mkpluginssystem

Example of plugins system in the .NET world.
https://github.com/marfusios/mkpluginssystem

Last synced: 2 days ago
JSON representation

Example of plugins system in the .NET world.

Awesome Lists containing this project

README

          

MKPluginsSystem
===============

Simple example of plugins system in the .NET world.
Every plugin is loaded in separate AppDomain. So you are able to modify plugins at application runtime (very useful on server side).

How to use:
- In your project add a reference to `PluginsCore` and `PluginsHost`
- Create your plugins which inherit from `PluginBase`, put them into separate assembly and set build output path to directory "Plugins"
- Use `PluginCollection` to load plugins by name
- Create parental class that implement interface `IParentPlugin` (see class `FakeHost` in unit tests assembly)
- Call method `Init` on every loaded plugin (constructor takes `IParentPlugin`)

**Check the `WinApp` project (fully MVVM application)** or **check the unit tests** for more information.