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

I recently upgraded up my IDE, but not my compiler from VS2010 to VS2012 and now I'm having issues with one of my solutions. When I try to build it I get "The project file '' has been renamed or is no longer in the solution"

And when I try to build the individual projects I get "A build is already in progress"

I've tried removing and readding all the projects, but that doesn't help. I even created a brand new solution with all the same projects, but when I tried to build that I got the same errors as with the original solution.

I've read that alot of people have similar problems to this, but now of their solutions have helped me so far.

One suggestion was to see if any projects had any missing reference but I'm not entirely sure how to go about doing that.

I tired removing the references an readding them but every time I tried to readd them I got the same erro "The project file '' has been renamed or is no longer in the soltuion"

Any help or suggestions would be awesome!

share|improve this question
1  
"One suggestion was to see if any projects had any missing reference but I'm not entirely sure how to go about doing that." - open the references node in each project........ – Mitch Wheat Jan 28 at 23:56
My suggestion is to open up the .SLN file in your favorite text editor and dig around. The format is fairly straight forward. – Mike Christensen Jan 29 at 16:41

2 Answers

I had the same problem, and solved it by making sure that every project referenced by other projects were included in the solution.

Right-click on the first project, choose References... and make sure every project listed under References are included. Go to the next and do the same.

That solved my problem with "The Project file '' has been renamed or is no longer in the solution". Not sure about the problem with "A build is already in progress".

share|improve this answer

The problem seemed to occur for me when I had two solution files for different products, but which had several projects in common. These were VS2010 projects that I was opening for the first time in VS2012. When opening the first one all the projects were converted. The problem then arose when loading the second one as some of the projects had already been converted. It seemed to be the project references had been updated in the first solution, but then for the second solution it had to deal with updating some projects but using the already-updated versions of the common projects.

In the end, to solve it I had to remove and then re-add a couple of projects (and the project references) and that seemed to sort it out. It's also worth removing the build folders and the other temporary files (such as .suo) as the state of some of those files affected the project references problem (which I really didn't expect).

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.