Question

I often find myself in need of writing down a future Visual Studio solution improvement. Having them at hand while working on personal projects is very handy and accelerating.

Is there an extension (or maybe even a build-in feature) that would allow me to write down future changes to a list, and mark rows as "done" after implementation is finished?

Was it helpful?

Solution

Yes. You can use the "Task List" in Visual Studio:

Menu ViewTask List

Also, in the code, you can use tokens in your comments, so Visual Studio can auto-populate your task list. Such as:

//TODO: xyz
//HACK: ABC

The predefined tokens can also be extended:

Visual Studio → menu ToolsEnvironmentTask ListTokens

OTHER TIPS

You mean like a Task List?

It's right in the View menu... ViewTask List

The button on the far right side will let you add a new task. Any code comments starting with "TODO" will also appear there automatically.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top