在 Web 设置中,如何排除所有 .pdb 文件?
在 Visual Studio 2008 上的示例解决方案中,假设我有以下内容:
myWebSite
项目(网站项目)myLibrary
项目(库项目)myWebsiteDeploy
项目(Web 部署项目)myWebSetup
项目(Web 设置项目)
位于 < code>myWebSite 有一个 myLibrary.dll
和 myLibrary.pdb
,它们包含在 myWebSiteDeploy
项目中并传递给myWebSetup
如何告诉 myWebSeiteDeploy
或 myWebSetup
排除所有 *.pdb 文件因为部署的网站不需要它们?
In a sample solution on Visual Studio 2008, let's say, I have this:
myWebSite
project (web site project)myLibrary
project (library project)myWebsiteDeploy
project (web deployment project)myWebSetup
project (web setup project)
inside myWebSite
there is a myLibrary.dll
and myLibrary.pdb
witch they are included in the myWebSiteDeploy
project and pass to the myWebSetup
How can I tell myWebSeiteDeploy
or myWebSetup
to exclude all *.pdb files as they are not needed in a deployed website ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Visual Studio 中打开项目属性。选择“构建”选项卡,将“配置”更改为“发布”,然后单击“高级”按钮。 将调试信息更改为“无”。那么构建将不会创建 .pdb 文件。
Open the project properties in Visual Studio. Select the "Build" tab, change your "Configuration" to "Release" and click on the "Advanced" button. Change debug info to "none". Then the build will not create the .pdb files.