for example: I have app A, which references library A and library B. in addition, library A itself references a different version of library B. (these are all in C#)
I want all references to point to a binary DLL file. right now I have a lib folder like so:
lib/LibA/v1/LibA_1.dll
lib/LibB/v1/LibB_1.dll
lib/LibB/v2/LibB_2.dll
let's say the app references LibA v1 and LibB v2, but LibA itself depends on LibB v1. what's the "right" way to set this up, if it's even possible? I'd like to avoid the GAC and minimize manual fiddling with files, because the idea is that a developer would be able to check out app A from svn and build it with no changes to paths/references, assuming they have the lib folder tree checked out.
right now I'm noticing that Visual Studio is not copying LibA's version of LibB to the output directory. is the file name difference enough, or do I have to change the version in the assembly itself?