Is it possible to reference various different versions of the same assembly in C#?
For example I have an assembly 'C:/MyAssemblies/v1/Test.dll' and another version 'C:/MyAssemblies/v2/Test.dll'.
Now I want to use both dll's in my code...
I've tried adding the reference to my solution but I get the message "A reference to the component [my dll] already exists."
I would have thought that this would be possible and I could just use aliases or something?
For example I have an assembly 'C:/MyAssemblies/v1/Test.dll' and another version 'C:/MyAssemblies/v2/Test.dll'.
Now I want to use both dll's in my code...
I've tried adding the reference to my solution but I get the message "A reference to the component [my dll] already exists."
I would have thought that this would be possible and I could just use aliases or something?