views:

147

answers:

3

Is it possible to cancel/abort a running build process in Visual Studio 2008?
How?

+12  A: 

CTRL + Break should do the trick?

Iz
I was obviously too tired, because I was hitting Esc and/or Ctrl-C like mad. But didn't think of Ctrl-Break, because it's a tricky key combination to press. But thanks. It works.
Robert Koritnik
+1 for kbd tags.
Callum Rogers
Maybe I'm missing something, but with multi-processor C++ builds, canceling with ctrl-break or "alt-b a" doesn't actually seem to kill the build. I just did a 4 processor compilation and tried to kill it and two of the thread stopped, 2 kept going.
John Naegle
+4  A: 

Try hitting Ctrl+Pause(=break) on your keyboard.

Sorskoot
+3  A: 

While building, the Build menu has a Cancel menu item... which also shows the key combination in your particular configuration (default is, as answered by lz, CTRL+BREAK).

Lucero