A back, I asked the following question here: Stack Overflow, Assembly names and versions .
Now I realized that I can not sign my assembly with a strong name, since one of the third-party dependencies is not a strongly named assembly, and therefore mine is not amenable to subscription.
I tried to just change the assembly file name MyAssembly.dll to MyAssembly.v.1.1.dll, but when I do this and refer to the renamed assembly, it does not copy like the rest of the links. There seems to be a mismatch between the file name and the Identity attribute of the assembly.
I have projects A and B that are dependencies of project C. Project A must reference MyAssembly.dll v.1.0, and Project B must reference MyAssembly.dll v.2.0 so that both can be located in Project C bin / Release
What to do? How can i fix this?
Xerxxx
source
share