a matching symbol file was not found in this folder

前端 未结 13 2530
逝去的感伤
逝去的感伤 2020-12-14 14:37

I want to use debug symbols, but I am receiving the following error:

a matching symbol file was not found in this folder

What

13条回答
  •  悲哀的现实
    2020-12-14 14:49

    The error I got was "a matching symbol file was not found in this folder" in the Debug => Modules window even after both the DLL and PDB were available and built together, so I was unable to debug into the target DLL referenced by my main project.

    Posting this here in case it helps someone browsing with "Mixed Platform" build for target DLL. I did two things to get past this:

    1. In the solution using the target DLL, Uncheck "Just My Code" in Tools => Options => Debugging => General => Enable Just My Code (JMC).

    2. Check "Enable native code debugging" in target DLL solution in relevant Project Properties => Debug.

提交回复
热议问题