Domanda

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.

È stato utile?

Soluzione

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.

Altri suggerimenti

The only tool I'm aware of is the VSTime plugin. While it is targeted to 2008 it's a straight forward open source plugin that should work just as well in 2010. The source code is available here

It should be as simple as

  • Get a copy of the source
  • Upgrade the installer project to support 2010
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top