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

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 🙂

Leave a Comment