Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tasklist replacement for Visual Studio

I would like to use the task-list in Visual Studio but it really lacks almost any useful feature a task-list should provide. So I use Todo-List externally, to keep track of the things I need to get done. Would be nice to have it all in one place.

So does anyone know of a cool replacement Add-On for the tasklist in Visual Studio?

Thanks in advance!

like image 622
Mats Avatar asked Sep 18 '08 17:09

Mats


People also ask

Where is all todo in Visual Studio?

From within Visual Studio Go to View -> Task List. This will display the Task List window and show you any area of your open Solution that has existing comments that start with // TODO . You can filter down to your Current Project, Current Document, or Open Documents. It even will allow you to search the list.

How do I set up task runner in Visual Studio?

Configuring Visual Studio Task Runner to Execute A Task When the Project is Opened. If you have never used or opened the built in task runner it is simple, press Alt + Shift + Backspace or select it from the other windows list from the View menu. You should see the task runner window at the bottom of Visual Studio.


3 Answers

Assumed: Visual Studio 2008 + ReSharper

ReSharper->Windows->ToDo Explorer

E-

like image 93
Eric Brown - Cal Avatar answered Oct 27 '22 06:10

Eric Brown - Cal


For semi-immediate programming tasks I use TODO comments in code and ReSharper for Visual Studio to view them.

For longer-term tasks I use Team Foundation Server to record work items.

For non-programming tasks I use Google Calendar.

like image 40
Jason Stangroome Avatar answered Oct 27 '22 05:10

Jason Stangroome


You can modify the task list in Visual Studio by clicking TOOLS --> OPTIONS --> ENVIRONMENT --> TASK LIST

In the Token List you can add more tokens specific to what you want to call your tasks.

For example.. I have an EDITING token set up so in any module, class or method that I'm working on I just add the ' EDITING: (Name of whatever method ect..) comment and I can quickly see where I left off and get back too it by double clicking.

enter image description here

Here are a few other tokens I find useful... enter image description here

If you would like more advanced project and code tracking you should check out Visual Studio Online. It's free for upto 5 users. http://www.visualstudio.com/en-us/products/visual-studio-online-overview-vs

like image 44
Fütemire Avatar answered Oct 27 '22 07:10

Fütemire