如何让 HTML 文件中的 TODO 注释显示在 Visual Studio 的任务列表中?

发布于 2024-12-08 16:08:11 字数 129 浏览 0 评论 0原文

因此,只要 TODO 注释位于 C# 文件中,我的任务列表中就会显示 TODO 注释。 HTML、CSS 或 JScript 中的 TODO 注释未显示在我的任务列表中。有没有办法在 Visual Studio 2010 Pro 中启用此功能?

So, I have TODO comments showing up in my task list as long as the TODO comment is in a C# file. The TODO comments in HTML, CSS, or JScript aren't showing up in my Task List. Is there a way to enable this in Visual Studio 2010 Pro?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(5

停顿的约定 2024-12-15 16:08:11

简单的回答:不。

来自:如何:创建任务列表注释

任务列表显示代码中以
您的开发语言的注释标记。在评论旁边,
任务列表还显示默认任务标记,例如 TODO、HACK、
或 UNDONE,或自定义评论标记。评论数量
任务列表中显示的内容可能会发生变化,具体取决于项目类型
你正在努力。使用 Visual Basic 和 Visual C#,任务列表
显示解决方案中的所有评论。对于 Visual C++ 项目,
任务列表仅显示在文件中找到的注释
当前在编辑器中处于活动状态。

因此仅在 VB、C# 和 C++ 项目中支持。

Simple answer: NO.

From: How to: Create Task List Comments

The Task List displays comments in your code that begin with the
comment marker for your development language. Next to the comments,
the Task List also displays a default task token, such as TODO, HACK,
or UNDONE, or a custom comment token. The number of comments that
appear in the Task List may change, depending on the type of project
you are working on. With Visual Basic and Visual C#, the Task List
displays all the comments in the solution. With Visual C++ projects,
the Task List displays only the comments that are found in the file
that is currently active in the editor.

So it is only supported in VB, C# and C++ projects.

百合的盛世恋 2024-12-15 16:08:11

Resharper(如果您没有的话,您应该拥有它)具有您想要的待办事项列表窗口。它解析所有这些文件(js、css、html、c# 等)。您可以将该窗口与所有其他窗口停靠在一起。

With Resharper, which you should have if you don't, has the todo list window your looking for. It parses all the those files (js, css, html, c#, etc.). You can dock that window with all your other windows.

久光 2024-12-15 16:08:11

<% //TODO: page side task %>

即转义到代码,然后使用该语言的任务注释。

那么,或者:
<% 'TODO: VB 的页面端任务 %>

注意 Arun 关于它的警告仅在页面打开时显示,这可能就是为什么“NO”是最佳答案的原因,因为它不完全完成要求的任务。
(事实上​​,这实际上只是扩展了他的答案,但我还没有足够的观点来发表评论。)

<% //TODO: page side task %>

i.e. escape to code and then use that language's tasking comment.

So, then alternatively:
<% 'TODO: page side task for VB %>

Note Arun's caveat about it only showing with the page open, which might be why "NO" is the top answer, because it doesn't fully accomplish what was asked.
(In fact this really just expands his answer, but I didn't yet have the points to make it a comment.)

计㈡愣 2024-12-15 16:08:11

它适用于 Visual Studio 2015

唯一的问题是,需要打开该特定页面才能查看任务。

像普通 C# 一样添加任务

//TODO: this is javascript task

It works in Visual Studio 2015

Only issue is that, that particular page is needed to be opened to view the tasks.

Add Task as in normal C#

//TODO: this is javascript task
嘿嘿嘿 2024-12-15 16:08:11

尝试 :

<!-- //TODO::this is to do comment -->

Try :

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