views:

19

answers:

1

Hi all,

So as I attempt to build a huge solution with about 200+ projects..

  1. How do I stop the build at the very first error instead of waiting till the whole build is finished.

  2. Where do I read the log of the build or the output of the build?

  3. If I am able to stop the build at first error, where is the file located so I could read that error.

At this point, I can not change the solution file in any way.

+1  A: 

You can always do Ctrl + Break (this cancels the build process). Though you'll have to watch the Output windows to see if an error occured.

You can view the log of the build results/progress from the Output window (be sure the Build option is selected).

AlvinfromDiaspar
Great idea, but sometimes Visual Studio just does not respond to Ctrl+Break command and builds and builds and builds for eternity!
SadSido