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

编程入门 行业动态 更新时间:2024-10-10 23:21:44
本文介绍了如何在发布模式下为托管项目生成PDB?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我知道通过为编译器提供/debug参数为.NET中的托管项目生成PDB. 有没有一种方法可以在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 此处了解到,可能的值DebugType标记为:

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

  • full
  • pdbonly
  • none
  • full
  • pdbonly
  • none

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

How do these values affect the compiler's behaviour?

推荐答案

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

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

更多推荐

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

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

发布评论

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

>www.elefans.com

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