vote up 5 vote down star
3

Does any know if there is any native mechanism to report on the total solution build time in Visual Studio 2008? You can change the build verbosity to report build times per project as discussed here or report total build time from msbuild but I’d like to see this in the IDE across an entire solution containing many projects. Short of creating custom pre and post build events, does anyone know if there’s any native output for total build time? Thanks!

flag

78% accept rate

1 Answer

vote up 2 vote down

MSBuild will show the total build time when you run it from the command prompt, e.g:

> msbuild MySolution.sln
...
Time Elapsed 00:00:36.94
link|flag
1  
Sure, I’m aware of the command line option, I’m looking for something within VS though so it is visible during normal development. – Troy Hunt Oct 29 at 3:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.