如何使 TODO 注释显示在 C++ 的任务列表中Visual Studio 2010 中的项目?

发布于 2024-10-09 09:41:46 字数 635 浏览 1 评论 0原文

我试图让我的 TODO 注释显示在 Visual Studio 2010 中 C++ 项目的任务列表中,但没有。我查看了这个,但是除了当前打开的文件中需要包含 TODO 注释之外,没有任何其他警告。例如,创建一个新的 Win32 控制台应用程序会将其放置

// TODO: reference additional headers your program requires here

在新文件 stdafx.h 中。然而,任务列表中什么也没有。

我从任务列表的下拉列表中选择了“评论”,但它始终为空。这不是这个问题;我可以打开该文件并在代码编辑器中查看 TODO 注释,但没有显示任何任务。对于 C# 项目来说这不是问题,因为 TODO 注释按照这些项目中的设计显示;这似乎是 C++ 项目特有的问题。

我还可以检查什么?

I'm trying to get my TODO comments to show up in the task list in Visual Studio 2010 for a C++ project, but they don't. I looked at this, but see no caveats other than the TODO comments need to be in the currently-open file. For example, creating a new Win32 console app places this:

// TODO: reference additional headers your program requires here

in a new file, stdafx.h. However, there's nothing in the task list.

I have "Comments" chosen from the drop-down in the task list, but it's always empty. And it's not this problem; I can open the file and be looking at the TODO comment in the code editor and no task is shown. This is not a problem for C# projects as TODO comments show up as designed in those projects; this appears to be an issue specific to C++ projects.

What else can I check?

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

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

发布评论

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

评论(2

老街孤人 2024-10-16 09:41:46

“出于性能原因”,此功能默认处于关闭状态。工具 + 选项、文本编辑器、C/C++、格式、杂项、枚举注释任务 = True。反馈文章位于此处

另请注意 MSDN 文章中有关任务列表注释的评论:

对于 Visual C++ 项目,任务
列表仅显示以下评论
在文件中找到
目前在编辑器中处于活动状态。

This is off by default 'for performance reasons'. Tools + Options, Text Editor, C/C++, Formatting, Miscellaneous, Enumerate Comment Tasks = True. Feedback article is here.

Also note the comment in the MSDN article about task list comments:

With Visual C++ projects, the Task
List displays only the comments that
are found in the file that is
currently active in the editor.

夜吻♂芭芘 2024-10-16 09:41:46

这是我从MSDN得到的:

嗨,

任务列表窗口中的“评论任务”默认处于关闭状态
由于性能原因。您可以从以下位置开启此功能

工具->选项->文本编辑器->C/C++->格式->
其他 -> 枚举评论任务。

对于给您带来的不便,我们深表歉意。

感谢 Sumit Kumar Visual C++ 团队

This is what I got from MSDN:

Hi,

The ‘comments tasks’ in the Task List window is turned off by default
due to performance reasons. You can turn this feature on from

Tools->Options->Text Editor->C/C++->Formatting->
Miscellaneous->Enumerate Comment Tasks.

We apologize for the inconvenience.

Thanks Sumit Kumar Visual C++ Team

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