C++/CLI Missing MSVCR90.DLL

后端 未结 2 1489
无人共我
无人共我 2021-02-14 17:22

I have a c++/cli dll that I load at runtime and which works great in debug mode. If I try and load the dll in release mode it fails to load stating that one or more dependencies

2条回答
  •  长情又很酷
    2021-02-14 17:51

    It happened to me something similar running a website in Vistual Studio 2012, after migrating from Visual Studio 2010. The error message was saying that MSVCR90.DLL was missing. The solution was: 1) Delete the folder _bindeployable located at the project path. 2) Rebuild.

    I hope it helps.

提交回复
热议问题