How to find "slow" places when building a solution on VS2010?

Is there a tool that can find me a place in my project that takes so long to build? Similar to the performance profiler, but for the Visual Studio build process.

PS I tried to profile my Visual Studio during assembly with another VS instance, but I did not get obvious results.

+5
source share
2 answers
Tools -> Options -> Projects and Solutions -> Build and Run

There you can change the MSBUild project build output verbosity  settings

When at the normal level, he will give timings for each project, so this can be used to see what causes a slowdown. (in the output window)

, .

+5

http://msbuildprofiler.codeplex.com/, msbuild

MSBuild.exe MySolution.sln /t:rebuild /l:MSBuildProfileLogger,MSBuildProfiler,Version=1.0.1.0,Culture=neutral,PublicKeyToken=09544254e89d148c

, (/t: rebuild), , .

, 1 - :)

+5

All Articles