首页 > 解决方案 > 代码执行无法继续,因为找不到 cpprest_2_10.dll

问题描述

我的目标是在 Visual Studio 中使用 Rest API。我从https://github.com/Microsoft/vcpkg下载了 C++ 工具 vcpkg并按照https://github.com/Microsoft/cpprestsdk上的说明安装 cpprestsdk。那工作得很好。

然后,在解决方案资源管理器的属性中的 Visual Studio 中,我将 vcpkg 文件夹中的以下路径包含到“VCC++ 目录->包含目录”中:

vcpkg-master\vcpkg-master\buildtrees\cpprestsdk\src\v2.10.2-718a4e55e9\Release\include\cpprest

vcpkg-master\vcpkg-master\buildtrees\cpprestsdk\src\v2.10.2-718a4e55e9\Release\include

vcpkg-master\vcpkg-master\buildtrees\cpprestsdk\src\v2.10.2-718a4e55e9\Release\include\pplx

然后我运行我的代码并出现以下错误:

LNK2001 unresolved external symbols(32个这样的错误)

我用谷歌搜索并被告知将相应的“.lib”文件包含到“属性->链接器->输入->附加依赖项”中,并将相应“.dll”文件的路径包含到“属性->链接器”中->General->Additional Library Directories”,我做了什么。

现在,再次运行代码,只是出现以下错误:

code execution cannot proceed because cpprest_2_10.dll was not found. Reinstalling the program may fix the problem,

虽然“cpprest_2_10.dll”在我之前包含的路径中。

我不知道问题是什么。提前感谢您的宝贵时间。

标签: c++dllvisual-studio-2017unresolved-externallib

解决方案


尝试将丢失的 dll 文件放在已编译的 exe 的目录中。

或检查此答案以设置路径,以便您的二进制文件可以找到 dll 文件:

如何在 Visual Studio 中设置 DLL 文件的路径?


推荐阅读