I want to know how to load assemblies which are outside the Appbase and Appdomain.
My problem is that I have a list of assemblies that are on a shared directory. My
There is an event that is fired if it can't find an assembly or one of its references:
AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(CurrentDomain_AssemblyResolve);
Assembly CurrentDomain_AssemblyResolve(object sender, ResolveEventArgs args)
{
}
Add it before you're loading your assemblies. Put a breakpoint in it and in args there should be some info about the assembly you're missing