It seems like it should be possible to configure Visual Studio to print out how long the compile takes.
Perhaps somewhere in the .sln file. If the sln is compiled from the command line using msbuild, it prints the time.
It seems like it should be possible to configure Visual Studio to print out how long the compile takes.
Perhaps somewhere in the .sln file. If the sln is compiled from the command line using msbuild, it prints the time.
Tools > Options > Projects and Solutions > Build and Run > MSBuild project build output verbosity
Edit: On VS2008, this gives you the information on a project by project basis. I did not find a way to get the information for the whole solution build.
You will see in the "Output" window the beginning time and the end time. Do the math!
Exercise for the reader: Pipe the output of the two commands to a file and subtract them and output it to the output window.