I have an VS Solution with 8 projects (is an cleaner copy of an much bigger one).
The solutions and their projects was copied another folder and since then I had to manually change the projects' full paths on IDE to the correct path.
EDIT: Example: the solution and their projects are on the C:\Fabricio\MyOldSolutionPath\NewSolution and I moved it to C:\Fabricio\NewSolution.
Real filesystem tree:
c:\Fabricio
\NewSolution
--> Solution.sln
|-->\Project1
|-->\Project2
How Visual Studio searches for the files:
c:\Fabricio
\Project1
\Project2
[End of EDIT]
Since it, all projects are resolved to C:\Fabricio\Project1, C:\Fabricio\Project2, etc. instead of C:\Fabricio\NewSolution\Project1, C:\Fabricio\NewSolution\Project2, etc
The solution file itself is on the c:\Fabricio\NewSolution folder.
In the *.sln file the paths are ok (below an excerpt of the solution file with the name of folders modified ):
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Project1", "Project1\Project1.vbproj", "{E1D1787F-4E15-48B0-BAB0-9060A68D049D}"
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Project2", "Project2\Project2.vbproj", "{5D12F49B-E057-499C-AB62-438A8C0766BB}"
EndProject
Why this happens?