I'm receiving the message below when I attempt to start the Local Windows Debugger on this project in Visual Studio 2022 . I had some earlier challenges adding and linking the additional include libraries and files for MySql as well as some earlier notifications about missing .dll files. I thought these were resolved since I was able to successfully build. What do I need to check to start trying to fix this? Let me know if any additional information is needed.
CodePudding user response:
I suggest you read this issue carefully.
In addition, you could also refer to the following two methods:
Install all pending Windows and driver updates, please refer to the following article created by Andre Da Costa.
And run the Microsoft safety scanner and check if your computer is infected by malware. This link is for your reference.
CodePudding user response:
I was able to resolve the issue by re-writing the project from scratch on my laptop, starting with an empty C project. In the course of doing that, I did run into some of the same messages regarding missing .dll files. This was resolved by copying and pasting these into the appropriate /debug folder for the project directory. As suggested, I did implement the scan for corrupt files, which fortunately did not turn up any issues. Once this was completed, I achieved a successful build and execution of the program.