如何在 Visual Studio 2008 中关闭 XML 文档

发布于 2024-11-08 18:14:42 字数 184 浏览 0 评论 0原文

如何在 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 技术交流群。

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

发布评论

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

评论(2

北座城市 2024-11-15 18:14:42

阻止 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 the Output div uncheck XML documentation file:

傾城如夢未必闌珊 2024-11-15 18:14:42

为此,您需要编辑 Visual Studio 2008 的模板(存储在 ZIP 文件中),然后更新缓存。

模板位于

  • C:\Program Files (x86)\Microsoft Visual Studio
    9.0\Common7\IDE\ItemTemplates
  • C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates

将要编辑的 zip 文件复制到工作文件夹中。
解压缩文件,编辑模板文件,然后将它们重新压缩回 zip 文件。
将其复制回相应的模板文件夹中。

编辑模板文件后,打开 Visual Studio 命令提示符(您可能需要以管理员身份运行)并输入:

devenv /installvstemplates

这将更新缓存的模板文件夹。 (不要屈服于编辑缓存模板文件本身的诱惑。下次刷新缓存时,您的编辑将被覆盖并丢失)。

有关更多详细信息,请参阅:

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

  • C:\Program Files (x86)\Microsoft Visual Studio
    9.0\Common7\IDE\ItemTemplates
  • C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates

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:

devenv /installvstemplates

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:

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