问题描述
如何将DebugDiag与内部应用程序一起使用?
How do I use DebugDiag with an in-house application?
我需要做什么(包括obj文件,链接到程序集等)
What do I need to do (include obj file, link to an assembly, etc)
推荐答案
Debugdiag Analysis需要符号(默认情况下,Microsoft公共符号服务器已配置Debugdiag)。所有下载的Microsoft公共符号都将位于c:\ symcache
Debugdiag Analysis requires symbols (By default the Microsoft public symbol server is already configured with Debugdiag). All downloaded Microsoft public symbols will be places in "c:\symcache"
如果您有内部应用程序,并且您有符号,那么您只需添加你的PDB文件(仅)到符号路径:c:\ symcache
If you have an in-house app, and you have symbols, then you can just add your PDB files (only) to the symbol path: "c:\symcache"
在调试过程中,如果你设置断点,那么你还需要添加符号适当的路径。 c:\ symcache
During debugging, if you are setting breakpoints, then you also need symbols added to the appropriate path. "c:\symcache"
这篇关于将DebugDiag与内部应用程序一起使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!