vote up 13 vote down star
1

Our build server is taking too long to build one of our C++ projects. It uses Visual Studio 2008. Is there any way to get devenv.com to log the time taken to build each project in the solution, so that I know where to focus my efforts?

Improved hardware is not an option in this case.

I've tried setting the output verbosity (under Tools / Options / Projects and Solutions / Build and Run / MSBuild project build output verbosity). This doesn't seem to have any effect in the IDE.

When running MSBuild from the command line (and, for Visual Studio 2008, it needs to be MSBuild v3.5), it displays the total time elapsed at the end, but not in the IDE.

I really wanted a time-taken report for each project in the solution, so that I could figure out where the build process was taking its time.

Alternatively, since we actually use NAnt to drive the build process (we use Jetbrains TeamCity), is there a way to get NAnt to tell me the time taken for each step?

flag

69% accept rate

3 Answers

vote up 10 vote down check

Tools -> Options -> Projects and Solutions -> VC++ Project Settings -> Build Timing

should work.

link|flag
vote up 1 vote down

Since your question involves using DevEnv from the command line, I would also suggest using MSBuild (which can build .sln files w/o modification).

msbuild /fl /flp:Verbosity=diagnostic Your.sln

msbuild /? will show you other useful options for the filelogger.

link|flag
vote up 13 vote down

Tools... Options... Projects and Solutions.... MSBuild project build output verbosity - set to "Detailed", and the build time will appear in the output window

link|flag
1  
Prior to Visual Studio 2010, Visual C++ projects don't use MSBuild, so this setting has no effect. Works fine for other project types, though. – Roger Lipscombe Sep 9 at 15:53

Your Answer

Get an OpenID
or

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