Visual Studio Compilation Time Statistic
Anyone know an add-in or something that could give me the num开发者_C百科ber of time spent on compiling during the day? I am interested to gather some data about the time I use Visual Studio to code and to compile. Any tips would be welcome too if no add-in exist.
Edit:
I would need to have in the time all DLL loaded too by the ASP.Net webserver, not only those in the solution, what I mean is all those Output that looks like "'WebDev.WebServer2.exe' (Managed): Loaded 'c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\99145ad7\e9f1e7e6..." must be count in the statistic too.
I've just started using the Visual Studio plugin Build Monitor with very good results.
msbuild seems to give per-project build time when configured to give "detailed" output, but no summation of an entire solution's build time. This plugin does give the full solution build time.
Build Monitor also tracks the cumulative total time spent building during your current "session," which I would assume restarts when you restart Visual Studio.
You can turn on build timing as a start... although you'd still have to add it up yourself.
C++: Tools->Options->Projects and Solutions->VC++ Project Settings->Build Timing
.NET: Tools->Options->Projects and Solutions->Build and Run->MSBuild project build output verbosity
精彩评论