https://github.com/zeppaman/csharp-plugin
A test on .NET Core Plugins
https://github.com/zeppaman/csharp-plugin
aspnet-core csharp plugin plugin-system
Last synced: 7 months ago
JSON representation
A test on .NET Core Plugins
- Host: GitHub
- URL: https://github.com/zeppaman/csharp-plugin
- Owner: zeppaman
- License: gpl-3.0
- Created: 2019-03-24T08:00:19.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-24T08:17:16.000Z (over 6 years ago)
- Last Synced: 2025-01-23T13:13:48.880Z (9 months ago)
- Topics: aspnet-core, csharp, plugin, plugin-system
- Language: C#
- Size: 35.2 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
This project is a show case to prove the possibility to employ a plugin system in asp.net core. It is developed to be a prototype for the plugin system used into [RawCMS the asp.net core extensible Headless CMS](https://github.com/arduosoft/RawCMS) and uses the [McMaster's Library](https://github.com/natemcmaster/DotNetCorePlugins).
## Project structure

### Container
This is the web api container project that import plugin dinamically. Note that in this project there isn't any reference to plugin. All its loaded at runtime.### Library
This is a library where a dependency class is present. This class will be shared between plugin to ensure all works with same definition.
Moreover, this plugin include a dependency (html agility pack) that can be used from plugins### Plugin
This is the plugin. It uses newtownsoft, as private dependency. I consumes a `Dependency` insance from global context and Html Agility pack.