views:

224

answers:

1

My work just gave me a quad core computer, and WOW build times are fast! (What used to take 20+ minutes now takes 7 minutes).

Anyway, Visual Studio builds project in parallel (great for build times), but scrambles the output:

1>Performing Makefile project actions
3>arg.c
2>msg.c
3>log.c
4>test.c

(and so on....)

Is there a plugin that sorts the output when the build is complete?

+4  A: 

Selecting the "Build order" item in the "Show output from" dropdown list in the output and errors panes probably does what you are looking for.

RaphaelSP
Doh! I didn't even realize that was there! Thanks a ton! :)
Kevin