在 MsBuild 中禁用生成 PDB 文件

编程入门 行业动态 更新时间:2024-10-07 08:28:16
本文介绍了在 MsBuild 中禁用生成 PDB 文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我希望提高构建速度,并想知道是否可以指示 msbuild 不生成 PDB 文件.我没有运气通过 Configuration=Release 和 DebugSymbols=false 属性.

I'm looking to squeeze some more speed out of my build and was wondering if I could instruct msbuild to not generate PDB files. I'm passing the Configuration=Release and DebugSymbols=false property with no luck.

推荐答案

您可能在发布配置中生成 PDB.将此添加到您的发布设置中:

You may have PDB generation in your release configuration. Add this to your release settings:

<DebugSymbols>false</DebugSymbols> <DebugType>None</DebugType>

您也可以在 Visual Studio 中的项目配置中执行此操作.禁用 PDB 生成

You can also, do this in your project configuration inside visual studio. Disable PDB Generation

另外,如果从命令行运行 MSBuild,命令行参数将是

Also, if running MSBuild from the command line, the command line arguments would be

MSBuild.exe YourProject.csproj /p:DebugSymbols=false /p:DebugType=None

更多推荐

在 MsBuild 中禁用生成 PDB 文件

本文发布于:2023-05-28 00:47:50,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/308244.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:文件   MsBuild   PDB

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!