I am working on MFC C++ windows application where I am trying to debug crash dump file using visual studio 19 but showing following error when I run with mixed(native and managed). So I am not able to get culprit code.
MyFile.DLL was not found in the minidump. You need to load the binary in order to find the source for the current stack frame.
Exception is as following. Unhandled exception at 0x8A9E5B50 (MyFile.DLL) in FrameworX.exe.4936.dmp: 0xC0000005: Access violation reading location 0x00000000.
I tried following steps to resolve the issue but without success.
- In Visual Studio, go to Tools > Options and navigate to Debugging > Symbols.
- Add the path to the folder containing the PDBs for the DLL.
- This allows the debugger to map the binary to its corresponding source code.