Reputation: 5941
I am taking over huge solution with a lot of dependencies. I assume that some of them might be not needed or some classes can be moved to other projects.
what approach would you recommend to check which project take the longest time to compile ?
Upvotes: 0
Views: 33
Reputation: 127603
Use msbuild to build your project then look at the build logs to see timestamps of how long the build took.
Relevant MSDN links:
Walkthrough: Using MSBuild
Obtaining Build Logs with MSBuild
Upvotes: 1
Reputation: 1194
This is by far the best extension I know in building analytics Build Monitor
Upvotes: 1