Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Task list for Visual Studio

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?

like image 560
Maxim V. Pavlov Avatar asked Aug 21 '26 14:08

Maxim V. Pavlov


1 Answers

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

like image 95
Akhil Avatar answered Aug 24 '26 05:08

Akhil