我知道 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?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
有没有办法知道是否有人为您的网站添加了书签Is there a way to know if someone has bookmarked your website?(有没有办法知道是否有人为您的网站添加了书签?)
使用不同的 .Net 语言?Use of Different .Net Languages?(使用不同的 .Net 语言?)
确定 ASP.NET 站点的“活动"用户数Determining an #39;active#39; user count of an ASP.NET site(确定 ASP.NET 站点的“活动用户数)
跟踪当前在线用户的最佳方式Best way to keep track of current online users(跟踪当前在线用户的最佳方式)
推荐一个开源的.NET统计库Recommend an Open Source .NET Statistics Library(推荐一个开源的.NET统计库)
给定轮班列表,创建时间表的摘要描述Create a summary description of a schedule given a list of shifts(给定轮班列表,创建时间表的摘要描述)