Jon
Jon

Reputation: 5335

How do I make Visual Studio automatically stop compiling after 1 (or n) errors?

For example, a missing semi-colon in C++ can result in hundreds of errors. Is there a way to stop compiling when the first error is hit?

Update: apologies, just realized this was a duplicate of Automatically stop Visual C++ 2008 build at first compile error?

Upvotes: 1

Views: 1494

Answers (1)

Kevin Crowell
Kevin Crowell

Reputation: 10140

Hit the stop button.

Or, apparently, you can setup it up to stop automatically: http://www.ehow.com/how_5025041_automatically-visual-studio-build-error.html

Upvotes: 2

Related Questions