msvcr90d.dll not found when debugging
Sometimes microsoft make me feel dizzy. When I try to debug my project, VS throws a message box with this error: msvcr90d.dll not found, and reintalling the software may solve this error. But in the results window, while loading simbols, this line appear:
'GLFW_Window.exe': loaded 'C:\Windows\winsxs\x86_microsoft.vc90.debugcrt_1fc8b3b9a1e18e3b_9.0.30729.1_none_bb开发者_运维技巧1f6aa1308c35eb\msvcr90d.dll', Loaded symbols.
If I go to this folder, the DLL actually exists. Also, I have tried to download previous versions of the same projects that has been work correctly an still fails. Could a uninstallation delete this dlls? (It is not a clean machine but my personal machine).
By the way, if I copy manually the DLLs of this folder to my project, I get a weird error about make a manifest.
Could any of you help me? Thanks in advance
Notice the complete absence of the word "error". It is not an error, just a notification from the debugger that a DLL got loaded. Do not mess with the file, you'll break Visual Studio.
If you don't want to see the message then right-click the Output window and untick "Load messages".
精彩评论