How to generate PDB#39;s for .net managed projects in release mode?(如何在发布模式下为 .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?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在发布模式下为 .net 托管项目生成 PDB?


基础教程推荐
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01