提问人:Dominique 提问时间:6/14/2023 更新时间:6/14/2023 访问量:39
Windbg C# 转储分析:如何设置调试符号?
Windbg C# dump analysis: how to set debugging symbols?
问:
这看起来像是一个答案非常简单的问题:只需填写符号文件路径即可。
。但这并不容易:
我的 C# 项目的名称是“Application.Customer.Server”,我的应用程序 () 的名称是 .*.exe file
Application_Server_2.0.exe
在我的目录中,我有一个名为 的符号文件,并且我已将符号文件路径设置为 。C:\Temp_Folder\
Application.Customer.Server.pdb
C:\Temp_Folder\*
现在(之后),当我启动时,这是我得到的:!sym noisy
lmDvmApplication_server_2_0
DBGHELP: c:\temp_folder\*\application_server_2_0.dbg - The filename, directory name, or volume label syntax is incorrect.
DBGHELP: .\application_server_2_0.dbg - file not found
DBGHELP: application_server_2_0 missing debug info. Searching for pdb anyway
DBGHELP: c:\temp_folder\*\application_server_2_0.pdb - file not found
重命名文件不起作用。
如何加载与其模块名称不同的符号文件?
提前致谢
答: 暂无答案
评论
.symfix
.sympath
C:\Temp_Folder\*
不是有效的符号路径。不要添加 .符号路径是不带通配符的目录名称。*