pdb file not generated in visual studio 2015

Deadly 提交于 2019-12-08 19:01:38

问题


I am developing a application using C#-MVC with Entity framework(database first) VS 2015 I have created separate project forData Layer Access. When I build this project, either DEBUG or RELASE mode, debug file not getting generated i.e. ".pdb" file. Due this unable to hit break point. In all project this file generated except Data Layer Access project

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

Thanks in advance!


回答1:


(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.



来源:https://stackoverflow.com/questions/40024320/pdb-file-not-generated-in-visual-studio-2015

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!