I have a solution with 3 C# projects built in VS2013. It was checked out from GIT but I got all library references missing (marked as yellow triangle) in one project.
But, the same lib references are all ok in the other two projects.
I have tried all solutions in All system references missing Visual Studio 2013 NuGet Async
but, none of them work for me.
Any help would be appreciated.
UPDATE This is part of the c# project file, why they are missing in this project but not in other projects ?
<Reference Include="System" />
<Reference Include="System.ComponentModel.DataAnnotations" />
<Reference Include="System.Configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Data.SQLite">
I have project 1,2,3 in one solution.
In the same solution, project 1 can find the same lib reference from a local path.
But, when I added the same lib reference from the same local path to project 2, it cannot find it.
Why ?