vote up 1 vote down star

Visual Studio builds the entire solution when I exit debug mode.

This is very annoying as the solution contains 42 projects (ASP.NET MVC, IIS hosted WCF, Silverlight apps and others) and the build process locks Visual Studio for aprox. 30 seconds.

What causes Visual Studio to do a full rebuild of the solution? Is there a setting that I can turn on to determine the root of the problem?

flag
It doesn't happen every time, tough. About 10% of the start-debug-exit work fine, whereas about 90% of the time I get above behaviour. – o_o Jul 8 at 8:44

2 Answers

vote up 0 vote down

I had the same problem. Today I disabled whole "Edit and Continue" option and annoying recompilation hasn't occured since then.

link|flag
that does not solve my case unfortunately :( – o_o Aug 18 at 8:40
vote up 0 vote down

Are you editing the source code during debugging?

VS does a "temporary"* compile in these cases to let you carry on running the program. Once you exit debug mode it knows this and can do a full rebuild of the project.

If you're going to do further changes then this build is a waste of time. Have you looked at the options on Tools > Options > Debugging > Edit and Continue? There's an option called Relink code changes after debugging and it's enabled by default. Try turning that off.

* this is the wrong term, but I can't remember the correct one at the moment.

link|flag
no code changes. it even happens when I hit start, then stop after the website's start page has fully loaded in the browser. – o_o Jul 8 at 8:56
@o_o - You could try turning that option off anyway - if nothing else it would eliminate it as a possibility. This is the sound of me clutching at straws! – ChrisF Jul 8 at 8:59
Turning that setting off did not have the desired effect... – o_o Jul 9 at 10:35
@o_o - OK, I'm completely stumped. Don't take this the wrong way, but without seeing exactly what options you choose, what steps you take and exactly what happens during your debug session, I can't think what could be causing this behaviour. Sorry I can't be of more help. – ChrisF Jul 9 at 11:18

Your Answer

Get an OpenID
or

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