"redsolo" <eramfelt@gmail.com> wrote...
> Is there any Addin to Visual Studio to measure how long time a build
> takes? It would be interesting if I could find out how much of my day is
[quoted text clipped - 9 lines]
> I would like to measure the time between the user presses the key to start
> a build and when it is actually done.
For Visual C++, just go to Tools -> Options -> Projects and Solutions ->
VC++ Project Settings -> Build Timing. I don't know if that applies to any
other language you might be using though.
--
Andy
redsolo - 29 Mar 2007 07:41 GMT
On Mar 29, 12:57 am, "Andrew McDonald" <myrmecophaga...@no-spam-
thanks.hotmail.com> wrote:
> "redsolo" <eramf...@gmail.com> wrote...
> > Is there any Addin to Visual Studio to measure how long time a build
[quoted text clipped - 14 lines]
> VC++ Project Settings -> Build Timing. I don't know if that applies to any
> other language you might be using though.
I tried it and that option does not seem to work for common C#
projects.
But I could change the build output verbosity to "Normal" and then I
would get the elapsed time for each project build, which is very close
what I want. But the problem is that it is only logged in the output
window, so it could be solved IF I could either pipe the output to a
file or create an Addin that listens on the output window. (I dont
want to sit and copy/paste the thing manually to an app for every
build I make)
Does anyone know if it:
* Is possible to read/access the output from an Addin?
* Is possible to pipe the output to a file or similar?
If so i could create a simple app to go through the text and read the
elapsed timings, and present them somehow.
Cheers
//E