Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In the build log I'd like to the start and end time of each project's compilation. Is there any way to get VS to do this?

share|improve this question

4 Answers

up vote 3 down vote accepted

For VC++ builds you can enable build timing. Go to Tools->Options->Projects and Solutions->VC++ Project settings and choose the option for 'Build Timing'

share|improve this answer

A new way I found is to call the Time command in the post event Pre and Post-build event command line:

TIME /T
share|improve this answer

Not without modifying the actual project file (using a text editor) to add calls in to the MSBuild script targets.

share|improve this answer

Thanks. I guess that's as much as I can get it to tell me without doing a bunch of extra work.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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