Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

visual studio compile time plug-in

Is there a visual studio plug-in that will track how long it takes to compile and run a project?

Basically I'm trying to make a case to get faster computers for the development department. It seems like it takes a minute or so every time I want to run/debug, so I want a way to track how long ever day/week/month my computer spends compiling.

We are using visual studio 2005, .net 2.0 in C#.

like image 752
pinniger Avatar asked Jul 15 '09 13:07

pinniger


People also ask

How do I check compile time in Visual Studio?

Go to Tools → Options → Projects and Solutions → Build and Run → MSBuild project build output verbosity - set to "Normal" or "Detailed", and the build time will appear in the output window.

Why is Visual Studio 2022 so slow?

You might have extensions installed that slow Visual Studio down. For help on managing extensions to improve performance, see Change extension settings to improve performance. Similarly, you might have tool windows that slow Visual Studio down.

Does Visual Studio automatically compile?

If you're building a standard build, Visual Studio will automatically use its own internal copy of CMake, so you don't need to download it separately. If you're building an advanced build, you will need to download and install CMake.


1 Answers

For C++, you can turn on build timing, in VS2005, this is under Tools > Options > Projects and Solutions > VC++ Project Settings > Build Timing. Not sure if this applies to other languages. This only times each individual build and spits the result to the output window. If you want to track statistics, then you'd need to parse this and store it somehow.

like image 70
Nick Meyer Avatar answered Oct 28 '22 09:10

Nick Meyer