如何在发布模式下为 .net 托管项目生成 PDB?

How to generate PDB#39;s for .net managed projects in release mode?(如何在发布模式下为 .net 托管项目生成 PDB?)
本文介绍了如何在发布模式下为 .net 托管项目生成 PDB?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我知道 PDB 是为 .NET 中的托管项目生成的,方法是为编译器提供/debug 参数.有没有办法在 VS (2005) GUI 中指定这个?

I know PDBs are generated for managed projects in .NET by giving the compiler the /debug argument. Is there a way to specify this in the VS (2005) GUI?

到目前为止,我可以让它在发布模式下生成 PDB 的唯一方法是手动修改 .csproj 文件并添加:

The only way I could get it to generate PDBs in release mode so far is to manually modify the .csproj file and to add :

<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>

在发布"设置下:

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">

另一件事:我从 MSDN here 了解到可能的值DebugType 标签是:

Another thing: I learned from MSDN here that the possible values for the DebugType tag are:

  • 完整
  • pdbonly

这些值如何影响编译器的行为?

How do these values affect the compiler's behaviour?

推荐答案

在VS2008中,可以使用项目属性-> Build ->设置属性高级... -> 调试信息.

In VS2008, you can set the property using the project properties -> Build -> Advanced... -> Debug Info.

这篇关于如何在发布模式下为 .net 托管项目生成 PDB?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

MSBuild cannot find a reference(MSBuild 找不到参考)
The reference assemblies for framework .NETCore, Version=v5.0 were not found(未找到框架 .NETCore,Version=v5.0 的参考程序集)
quot;File has a different computed hash than specified in manifestquot; error when signing the EXE(“文件的计算哈希值与清单中指定的不同签署EXE时出错)
Good-practices: How to reuse .csproj and .sln files to create your MSBuild script for CI?(良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 MSBuild 脚本?)
Run an MSBuild target only if project is actually built(仅在实际构建项目时运行 MSBuild 目标)
MS-Build BeforeBuild not firing(MS-Build BeforeBuild 未触发)