Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to measure developer build time

I wanted to write a small app that would sit in my taskbar and monitor what Visual Studio was doing all day. Specifically, what I really want to figure out is how long I spend waiting on Visual Studio to build my solution each day.

Could someone point me in the right direction. Is there something in the Visual Studio SDK that would help?

like image 463
Rob P. Avatar asked Dec 30 '22 13:12

Rob P.


1 Answers

Since this is just for curiosity, I'd go with an easy option...

One potential would be to just make a pre-build and post-build script for your project, and log the start/stop of your build times.

You could then just parse the log and figure out the total time.

like image 187
Reed Copsey Avatar answered Jan 19 '23 15:01

Reed Copsey