Visual Studio 的任务列表

发布于 2025-01-01 07:18:19 字数 124 浏览 1 评论 0原文

我经常发现自己需要写下未来的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

黎歌 2025-01-08 07:18:19

是的。您可以使用 Visual Studio 中的“任务列表”:

菜单查看任务列表

此外,在代码中,您可以在注释中使用标记,以便 Visual Studio 可以自动填充您的任务列表。如:

//TODO: xyz
//HACK: ABC

预定义的token还可以扩展:

Visual Studio → 菜单工具环境任务列表令牌

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

尤怨 2025-01-08 07:18:19

您的意思是像任务列表

You mean like a Task List?

烈酒灼喉 2025-01-08 07:18:19

它位于查看菜单中... 查看任务列表

最右侧的按钮可让您添加新任务。任何以“TODO”开头的代码注释也会自动出现在那里。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文