Symbol file not loading for debugging custom project in Visual Studio 2012

后端 未结 18 1261
感动是毒
感动是毒 2020-12-04 20:54

I have a large solution in Visual Studio 2012 which consists of executables and class library projects. When debugging the application the breakpoints in one particular clas

相关标签:
18条回答
  • 2020-12-04 21:41

    In my case older version of referenced dll was in my GAC. Cleared it out, and it worked.

    0 讨论(0)
  • 2020-12-04 21:43

    In my case there was a check mark on Enable Just My Code in Tools>>Options>>Debugging>>General.

    I unchecked it and it worked.

    Example Image

    0 讨论(0)
  • 2020-12-04 21:43
    1. Check options from this answer: https://stackoverflow.com/a/38377530/6911991
    2. Click Advanced and check that Debugging Information is set to FULL
    3. Check Run Configuration in all projects in the solution
    0 讨论(0)
  • 2020-12-04 21:46

    Deleted the project from solution and added it again to the solution worked for me. :)

    0 讨论(0)
  • 2020-12-04 21:46

    Please check the dependency of your dll, if you added to the solution, this can cause failure in loading symbols.

    0 讨论(0)
  • 2020-12-04 21:50

    For me I just deleted the project from IIS and created it again and it works fine

    0 讨论(0)
提交回复
热议问题