Hi all,
I have a VS2008 solution with two projects in it. One is a web project, the other a class library project. The web project has a reference to the class library project's generated assembly.
Each project in turn references an assembly (call it "mydll") that's built from a class library project located in another VS solution.
If I were to copy mydll to separate directories and tell the web and class library projects to use those separate directories, what happens when I build my web project; which "copy" of mydll goes into the web bin folder?
And if the versions of mydll are different in the two directories, which one ends up in my web's bin folder after a rebuild? (Assume there are no strongly named assemblies involved here.)
I hope my question makes sense, if not let me know. Thanks!