如何在 Visual Studio 2008 中关闭 XML 文档
如何在 Visual Studio 中关闭 XML 文档,以便每次创建新项目/文件时都不会自动添加 XML 文档注释?
/// <summary>
/// Interaction logic for Window1.xaml
/// </summary>
How do I turn off XML documentation in Visual Studio so the XML documentation comments are not automatically added every time I create a new project/file?
/// <summary>
/// Interaction logic for Window1.xaml
/// </summary>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
阻止 VS 生成 XML 文档文件;右键单击项目文件上的“属性”,然后选择“构建”选项卡。在
Output
div 下取消选中XML 文档文件:
To stop VS from producing the XML document files; right-click Properties on your project file and select the
Build
tab. Under theOutput
div uncheckXML documentation file:
为此,您需要编辑 Visual Studio 2008 的模板(存储在 ZIP 文件中),然后更新缓存。
模板位于
9.0\Common7\IDE\ItemTemplates
将要编辑的 zip 文件复制到工作文件夹中。
解压缩文件,编辑模板文件,然后将它们重新压缩回 zip 文件。
将其复制回相应的模板文件夹中。
编辑模板文件后,打开 Visual Studio 命令提示符(您可能需要以管理员身份运行)并输入:
这将更新缓存的模板文件夹。 (不要屈服于编辑缓存模板文件本身的诱惑。下次刷新缓存时,您的编辑将被覆盖并丢失)。
有关更多详细信息,请参阅:
To do this you will need to edit the templates for Visual Studio 2008 (which are stored in ZIP files), and then update the cache.
The templates are located in
9.0\Common7\IDE\ItemTemplates
Copy the zip file to edit to a working folder.
Unzip the files, edit the template files, and rezip them back into a zip file.
Copy it back to the corresponding template folder.
Once you have edited the template file(s), open up the Visual Studio Command Prompt (you will probably need to run-as administrator) and type in:
This will update the cached template folders. (Do not yield to the temptation to edit the cached template files themselves. Your edits will get overwritten and lost next time the cache is refreshed).
For more details, refer to: