Visual Studio 的任务列表
我经常发现自己需要写下未来的 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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的。您可以使用 Visual Studio 中的“任务列表”:
此外,在代码中,您可以在注释中使用标记,以便 Visual Studio 可以自动填充您的任务列表。如:
预定义的token还可以扩展:
Yes. You can use the "Task List" in Visual Studio:
Also, in the code, you can use tokens in your comments, so Visual Studio can auto-populate your task list. Such as:
The predefined tokens can also be extended:
您的意思是像任务列表?
You mean like a Task List?
它位于查看菜单中... 查看 → 任务列表
最右侧的按钮可让您添加新任务。任何以“TODO”开头的代码注释也会自动出现在那里。
It's right in the View menu... View → Task 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.