I have 2 different assemblies with the same name I need to add to my project.
When I try to add both references to the project, visual studio tells me the assembly is already referenced (because there is already an assembly with the same name).
I tried renaming one of the files. I could add both references but then, when accessing methods from the renamed assembly, resolving it fails (because .net tries to load the assembly with the original name).
Note: The assemblies are not mine, therefore I cant change their contents.