I have a .NET solution in Visual Studio 2010 with a bunch of projects. Up until recently, when I would run the startup project from within the IDE, projects would only buil
The cause could be many things, so without having your solution + projects, we can only guess.
The typical way I handle this problem is by narrowing it down with a binary search. That is,
This (of course) only works if there is a single project that introduced the new problem (which is likely).
One of the culprits in my specific situation was having an x64 project reference an x86 project that wasn't selected to be built in the x64 configuration.