views:

35

answers:

1

UPDATE

Exact duplicate of http://stackoverflow.com/questions/3041982/vs2010-how-to-automatically-stop-compile-on-first-compile-error

Basically when it's compiling I want it to immediately stop when it encounters the first error. What it currently odes is tries to build all the rest of the projects which in turn fail. Anyone know how to do this?

Thanks!

A: 

I don't think you will be able to get the exact behavior you're looking for. Visual Studio will either try to build all or one project but not short circuit after the first error.

You can get close to the behavior you want by building only a single project at a time. Right click on the project you want to build and select "Build". It will not attempt to build any other projects even if it compiles successfully.

JaredPar