As consequence of my previous question ( XML serialization of interfaces ) I obtained another problem...
I have an application that export data from a database. The expo
You could hook the AppDomain.AssemblyResolve event to load the assemblies as they are needed. the event is raised each time that the runtime needs an assembly that it cannot resolve. It gives you one last chance to provide the assembly before the "Unable to find assembly" exception is thrown. Examples are on the page that I linked.