Thursday, April 30, 2015

AppDomain is refusing to find dll dependencies

Apparently you have just reinvented AppDomain.Load and its problem, loading the assembly in both domains. You have that loader which runs in the plugin appdomain and you call its GetAssembly method from the main appdomain. How will the main appdomain get its hands on that assembly? Well, it will try to load it as well.

 

No comments:

Post a Comment