vote up 0 vote down star

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.

flag

75% accept rate

2 Answers

vote up 3 vote down

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.

link|flag
+1. nice......... – Mitch Wheat Nov 2 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 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 at 18:05
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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