Is there a plug-in for Visual Studio 2010 that automatically tracks your time spent debugging ? I found a tool called "VSTime Beta", but it's designed to work with VS 2008.
how to track your time spent debugging in vs 2010?
200 views Asked by Fernando Vezzali At
2
I am not aware of any such plugin, but you can easily write a macro that does that for you.
The macro can simply record current time and start the debugger, then when the debugger finishes record how much time was spent debugging.
You can assign F5 to this macro as well.