Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to troubleshoot long builds in Visual Studio?

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.

like image 725
rafek Avatar asked Nov 02 '09 07:11

rafek


1 Answers

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.

like image 113
Brian Avatar answered Oct 13 '22 17:10

Brian