views:

216

answers:

3

At work we have a solution with over 90 projects. I want to know if there is a way to stop visual studio from compiling as soon as it encounters an error. Normally it will compile as far as it can and show a list of errors in the error window.

Any ideas?

A: 

You can always hit the break key to manually stop the compile.

Tom Cabanski
+1  A: 

Have a look here:

How to automatically stop Visual C++ build at first compile error?

Developer Art
Fantastic. That post had the answer.
Dylan
A: 

Default Shortcut for C#: CTRL+BREAK

ntziolis