PreviousNext

A plugin system with .NET Core

by bill-s, 2019-08-19T23:26:54.912Z

In this post, I show how you could implement a plugin system that can unload the plugins dynamically. I also provide some background information behind the techniques and classes involved. Unlike the AppDomain, the AssemblyLoadContext lets you unload the plugin types and the owned assemblies - sounds promising, right?

Read More