I know that it is possible, registering to the AppDomain.AssemblyResolve event, to handle the attempt to load an assembly when the automatic CLR search has failed.
In my current project, It would be helpful to handle all the assembly loading through such a mechanism; is there a way to do it?
An (ugly) workaround would be to move the executable in a separate directory and let everything be handled by the AssemblyResolve delegate; I hope there's a cleaner solution out there.
Regards, Andrea