I have two C# .NET projects that are loaded into one application process. Each have a reference to the same common library (let's call this common library the plugin). This plugin library needs to be a singleton instance. I've noticed that when each of my project references this plugin library they each have their own copy of the library itself when the application is loaded.
How do I go about making the plugin library a shared library across both of my .NET projects. Thanks