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

I just upgraded a VS2010 project to VS2012 and am now having a problem where dependent projects are not building on demand. For instance, say I have the following projects in my solution:

  • Library A
  • ConsoleApp 1

Where ConsoleApp 1 references Library A. If I change the signature of a method in a class in Library A and run ConsoleApp 1, there will be a compiler error due to ConsoleApp 1 not seeing my changes because running ConsoleApp 1 did NOT cause Library A to build.

If I manually build Library A, then manually build ConsoleApp 1, it works fine. However, I would expect that running ConsoleApp 1 should cause any dependent projects to be rebuilt before launching.

Could I have something configured incorrectly? Or is this a bug in VS2012?

share|improve this question
It may be a bug, cause VS 2012 is still in the RC stage... Can't tell for sure though... – walther Jun 16 '12 at 14:49
What is displayed in your project dependencies (right click on project, then pick project dependencies)? – David Brabant Jun 16 '12 at 14:51
Project dependencies look correct. eg. for ConsoleApp 1, the checkbox for Library A is checked. The problem may be worse than I thought. If I make a change DIRECTLY to a class in ConsoleApp 1, then hit F5/Run, ConsoleApp 1 does NOT rebuild and it executes the last built version, without my changes. – user1438940 Jun 16 '12 at 14:58

4 Answers

up vote 2 down vote accepted

Try by removing project references and adding them again (path to follow: References -> (right click) Add reference -> Solution -> Project). Before giving another try Save All. This is how I solved it.

share|improve this answer
So, this wasn't exactly the problem, but I ended up removing ALL projects from the solution, editing the .csproj files to remove the project references, then adding each project back into the solution and recreating the references. Seems to work fine now! – user1438940 Jun 16 '12 at 18:45

Your symptoms sound very similar to those I experienced a while ago. Ensure that the projects are set to build with your current active solution configuration and active solution platform under Build->Configuration Manager.

share|improve this answer
This did it for me; I was getting the error in release mode, and the checkboxes for each project was off. +1 – Brian Mains Oct 23 '12 at 16:46
Solution also works for Visual Studio 2010 – Entrodus Feb 28 at 12:19

This happens when the .suo file for the solution becomes locked and Visual Studio is no longer able to write to it. Another symptom of this problem is that you will see temp suo files being created next to the solution when you open it. Try closing Visual Studio and deleting all *.suo files in your working area. Then reopen Visual Studio and rebuild all. No need to manually rebuild your solution. This will fix the issue when it is caused by a locked .suo, as happened to a colleague of mine today.

In his case, the cause seemed to be that he shutdown his laptop while Visual Studio was still open. Maybe the shutdown of Windows didn't complete cleanly? We can only speculate on how the .suo originally became locked.

share|improve this answer

I tried all the solutions above and that did not fix the issue for me. I found that it was because of the Active configuration in the ConfigurationManager was set to build only the Main (start up) project.

Go to Build > ConfigurationManager

Ensure that all the projects you want to build are checked as in the screenshot below This is a similar issue on Asp.Net forum here and this is the details on MSDN . Although it was weired, bcoz I never changed these settings and it was working properly last week enter image description here

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.