如何使 TODO 注释显示在 C++ 的任务列表中Visual Studio 2010 中的项目?
我试图让我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
“出于性能原因”,此功能默认处于关闭状态。工具 + 选项、文本编辑器、C/C++、格式、杂项、枚举注释任务 = True。反馈文章位于此处。
另请注意 MSDN 文章中有关任务列表注释的评论:
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:
这是我从MSDN得到的:
This is what I got from MSDN: