debugging information cannot be found or does not match visual studio's

后端 未结 14 1585
醉酒成梦
醉酒成梦 2020-11-29 04:11

I copied an existing project and renamed the folder. Now I get this error when I try to compile the application

debugging information cannot be found

相关标签:
14条回答
  • You probably have deactivated the debugging information for your project:

    • Right click on your project -> Properties
    • Configuration properties -> Linker -> Debugging
    • Switch "Generate Debug Info" from No to Yes

    Rebuild your project and retry, it should now run without the message :)

    0 讨论(0)
  • 2020-11-29 05:09

    Restarting Visual Studio can fix one instance of this problem.

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