Since the update to VS 2013 I have the behaviour that I cannot add a reference to 2 projects with the same name. I did the following:
The resulting structure looks like this:
Solution + A + Core + B + Core + C + ConsoleApp
In the project properties of A the following is entered:
and in B:
After I added a reference to A.Core in C.ConsoleApp and I try to reference to B.Core to the console I get the error:
A reference to 'Core (B.Core)' could not be added. A reference to the component 'Core' already exists in the project.
The solution was created with VS 2012 and shows this behavior since upgrade. What do I have to setup inside the console?
Edit: I published a screencast on Youtube to explain the problem and placed a bug at Microsoft-Support. I still think, this is a bug.
To fix a broken project reference by correcting the reference path. In Solution Explorer, right-click your project node, and then select Properties. The Project Designer appears. If you're using Visual Basic, select the References page, and then click the Reference Paths button.
Right click on the project file in Solution Explorer and select 'Edit Project File' and manually fix the reference hint paths (the project file is XML). Save, and right-click the project file in Solution Explorer again and select 'Reload Project'.
The issue is that the reference name takes on the project name. It's still referencing the DLL by the appropriate name (A.Core.dll or B.Core.dll), but the reference uses the project name inside VS:
If you look at the project file after adding a reference to A.Core, you'll see this:
<ProjectReference Include="..\ClassLibrary1\Core.csproj"> <Project>{16c42795-f703-4673-98e4-98758c09f9e0}</Project> <Name>Core</Name> </ProjectReference>
Change the Name value to A.Core and you'll be unblocked. (B.Core will still show up as "Core" until you edit it as well.)
Remove the reference to that dll and then reapply it. it worked for me.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With