switch DLL based on environment - .net -
I want to release a DLL that includes some classes for the use of other developers. Behind these sections is another DLL which is contatain of the referenced functionality. In the development environment I want this backend DLL development oriented function, but when the code migrates into the production environment, I want the backend DLL to be the real one. What is the best way to switch backend DLL?
Thanks for any help.
Use a .config file to run the assembly name and empty / missing backend version During loading [More] It is easy to do this with another assembly in which the interfaces are shared.
Comments
Post a Comment