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.

Is it possible in any way to troubleshoot the build process in Visual Studio? I'd like to see which part of the build specifically takes so much time.

share|improve this question

2 Answers

up vote 6 down vote accepted

Tools\Options\Project and Solutions\Build and Run\MSBuild output verbosity -> verbose.

In the Output Window, you'll get a time summary at the end, and you can see at which point in the process there is a long pause.

share|improve this answer
+1. nice......... – Mitch Wheat Nov 2 '09 at 8:30
Ok, so now I've information that target CoreCompile inside one of the projects takes 200202 miliseconds.. can I go deeper and check why? – rafek Nov 2 '09 at 9:46
CoreCompile typically is just running the command-line compiler on the source code (the command-line should show in the output window). At that point, you might need to ask a more specific question about that compiler (which compiler is it?). – Brian Nov 2 '09 at 18:05

Watch the output window in visual studio during a build or build from the command line directly with MSBuild. You should be able to notice where the build process is spending most of its time.

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.