本文介绍了未在 Visual Studio 2015 中生成的 pdb 文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 C#-MVC 和实体框架(数据库优先)开发应用程序 VS 2015

我为数据层访问创建了一个单独的项目.当我在 DEBUG 或 RELASE 模式下构建此项目时,未生成调试文件,即.pdb";文件.

请告诉我,我怎样才能为我的项目生成这个 .pdb 文件?

解决方案

(1)赞这个文档关于

(2)还请检查您的构建配置管理器,所有项目都使用默认的 Debug 或 Release 选项.

(3)如果还是没有帮助,你最好收集详细的输出/编译信息,并确定是哪个dll文件或pdb产生了这个问题.

对于断点问题,请在TOOLS->Options->Debugging->Symbols下启用Microsoft符号服务器.

I am developing an application using C#-MVC with Entity Framework(database first) VS 2015

I created a separate project for Data Layer Access. When I build this project in either DEBUG or RELASE mode, a debug file is not getting generated i.e. ".pdb" file.

Please let me know, how can I generate this .pdb file for my project?

解决方案

(1)Like this document about how to disable the pdb file, please check your project property "Debug Info" option and output path:

(2)Please also check your build configuration manager, all projects use the default Debug or Release option.

(3)If still no help, you'd better to collect the detailed output/compiled information, and make sure that which dll file or pdb generated this issue.

For breakpoint issue, please enable the Microsoft symbols server under TOOLS->Options->Debugging->Symbols.

这篇关于未在 Visual Studio 2015 中生成的 pdb 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 05:39