Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
Can you clarify what "all projects are resolved to" means? Based on your description these paths are correct relative to the sln file – allen Jan 31 at 18:16

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.