I have a VS2010 solution with five projects. One is a static library. Three are console programs with little besides a main with calls to the library. One is a signficant project with a main and a dozen or so source files of its own and calls to the library routines. I have /Gm enabled.
If I do a Build (F6) and then *immediately* do a Start Debugging (without touching any of the source code) VS2010 rebuilds much of the solution. I can see ten or so compiles happening in the output window. Every time I Start it does the same thing. Where VS2010 is so slow anyway this really slows down debugging. Any ideas what I should be looking for as to why VS2010 does a superfluous build on every Start?
Charles