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 b开发者_JAVA百科uild specifically takes so much time.
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.
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.
精彩评论