I am trying to have a collection of solution-specific extensions which I want to include in the source control. My goal is to load up different extensions for different solutions.
I tried creating a proxy extension and load the extension logic from external .dll.
But this failed because there does not seem to be a way to merge the external MEF
parts to the Visual Studio container.
So in other words, is there anyway I can put my solution specific extension in source control and make Visual Studio load those up when a solution is opened?
I also posted the same question in stackoverflow.