kosnkov
kosnkov

Reputation: 5941

Check dependecy project compilation time

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

Answers (2)

Scott Chamberlain
Scott Chamberlain

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

Diogo Cunha
Diogo Cunha

Reputation: 1194

This is by far the best extension I know in building analytics Build Monitor

Upvotes: 1

Related Questions