Reputation: 177
I'm looking into logging to a file how long it takes to build a solution in VS2012. This solution contains 70-80 vcxproj and I'm interested in how long it took to build the solution, or how long it took to build an individual project, by right-clicking on a project in solution explorer and choosing either Build or ProjectOnly->Build.
Thanks,
Upvotes: 0
Views: 90
Reputation: 761
Build of each vcxproj file is logged into file specified in Project > Properties >Configuration Properties >Build Log File
If you don’t see any time after hitting the build command, it can be because your project is up to date (nothing was changed) – detected by the incremental build feature of the msbuild.
Upvotes: 2