Visual Studio unable to recognise my MFC library for my webcam laser rangefinder code(Visual Studio 无法识别我的网络摄像头激光测距仪代码的 MFC 库)
问题描述
我尝试直接从互联网上复制源代码,但由于出现以下错误,我无法构建/调试整个文件.
I tried copying the source code from the internet directly and I couldn't build/debug the whole file because of the error found below.
请帮忙
Error occurred while restoring NuGet packages: System.ArgumentException: The path is not of a legal form. at System.IO.Path.NormalizePath(String path, Boolean fullCheck, Int32 maxPathLength,Boolean expandShortPaths)
at System.IO.Path.GetDirectoryName(String path)
at NuGet.VisualStudio.VsUtility.GetNuGetSolutionFolder(Solution solution)
at NuGet.VsEvents.PackageRestorer.UsingOldPackageRestore(Solution solution)
at NuGet.VsEvents.PackageRestorer.BuildEvents_OnBuildBegin(vsBuildScope Scope, vsBuildAction Action).
1>------ Build started: Project: LaserRange, Configuration: Debug Win32 ------
1>C:Program Files (x86)MSBuildMicrosoft.Cppv4.0V120Microsoft.CppBuild.targets(369,5): error MSB8031: Building an MFC project for a non-Unicode character set is deprecated. You must change the project property to Unicode or download an additional library. See http://go.microsoft.com/fwlink/p/?LinkId=286820 for more information.
========== 构建:0 成功,1 失败,0 最新,0 跳过 ==========}
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========}
推荐答案
右键单击您的解决方案,转到属性并将项目属性设置为使用 Unicode.
right click your solution, go to properties and set the project properties to use Unicode instead.
这篇关于Visual Studio 无法识别我的网络摄像头激光测距仪代码的 MFC 库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Visual Studio 无法识别我的网络摄像头激光测距仪代码的 MFC 库
基础教程推荐
- c++ STL设置差异 2022-01-01
- 提升 ASIO 流缓冲 2021-01-01
- 如何部分禁用 cmake C/C++ 自定义编译器检查 2021-01-01
- 为什么我们不能使用“虚拟继承"?在 COM 中? 2022-01-01
- 随机插入/删除的综合向量与链表基准 2022-01-01
- 如何在 C++ 中正确使用命名空间? 2022-01-01
- 与 CAS 的原子交换(使用 gcc 同步内置函数) 2022-01-01
- C++:获取传递给函数的多维数组的行大小 2021-01-01
- 如何更改 SysDateTimePick32 或 CDateTimeCtrl 的背景颜色? 2022-01-01
- 将不可复制的闭包对象传递给 std::function 参数 2021-01-01
