MSVCP90.dll not found?

后端 未结 6 779
南笙
南笙 2021-01-02 08:20

in my project if compile project in release, it asks me MSVCP90.dll.

if it is debug, it does not...

have you ever met such a situation?

and do you kn

6条回答
  •  鱼传尺愫
    2021-01-02 08:46

    Check your project settings. If you're not generating a manifest for your Release build, the DLL will need to be in the System32 directory.

    Also, if your Release and Debug builds are going to the same directory, it could be seeing the Debug manifest, which would point it to the debug version of the DLL. Your best bet is to generate an embedded manifest for all builds.

提交回复
热议问题