我可以在 Visual Studio 2010 中将任务列表项添加到 csHTML 中吗?
背景:
我对 Visual Studio 2010 相当陌生(曾使用过 Lua、LIMSBasic (Labware) 和其他一些没有使用像样 IDE 的项目,并且喜欢从评论中提取任务列表的想法我在代码中写了正确的内容,
我已经弄清楚如何使用注释来生成各种方式的“// TODO:”和其他任务列表,并在 stackoverflow 上找到了一些很好的列表,了解我可以做什么类型,但我无法建立 < em>(无论我如何滥用谷歌)即使可以将它们添加到csHTML文件没关系
我已经尝试过使用以下所有内容:
<!--// TODO: Work out how to add todo stuff to the tasklist!-->
// TODO: Work out how to add todo stuff to the tasklist!
<!--TODO: Work out how to add todo stuff to the tasklist!-->
<!-- TODO: Work out how to add todo stuff to the tasklist!-->
@// TODO: Work out how to add todo stuff to the tasklist!
...但什么也没有添加到任务列表
问题:
所以我的问题是:是否可以将“TODO:”和其他任务列表项添加到csHTML(使用razor的MVC 3),如果可以的话如何?
Background:
I am fairly new to Visual Studio 2010 (worked on Lua, LIMSBasic (Labware) and a few others that didn't use decent IDEs and love the idea of task lists being pulled out of the comments I write right in the code.
I have worked out how to use comments to generate all manner of "// TODO:" and other task list and found some good lists on stackoverflow for what type I can do but I can't establish (no mater how hard I abuse google) even if it's possible to add them to csHTML files nevermind how!
I have tried using all of the following:
<!--// TODO: Work out how to add todo stuff to the tasklist!-->
// TODO: Work out how to add todo stuff to the tasklist!
<!--TODO: Work out how to add todo stuff to the tasklist!-->
<!-- TODO: Work out how to add todo stuff to the tasklist!-->
@// TODO: Work out how to add todo stuff to the tasklist!
...but nothing was added to the Task List.
Question:
So my question(s) is/are: Is it possible to add "TODO:" and other task list item to csHTML (MVC 3 using razor) and if so HOW?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下应该有效。
或
因为它首先必须进入“代码”模式,然后您可以使用任务注释。
但显然以下内容不起作用(在我的视觉工作室中):
The following should work.
or
As it first has to go into "code" mode, and then you can use a task comment.
But apparently the following does not work (in my visual studio):