C:\Program Files (x86)\Microsoft Visual Studi-6ren">
gpt4 book ai didi

mfc - 如何在 VS2017 中禁用 "warning MSB8051: Support for targeting Windows XP is deprecated"?

转载 作者:行者123 更新时间:2023-12-04 18:00:55 30 4
gpt4 key购买 nike

由于 Visual Studio 2017 的最新更新之一,我在构建 MFC 项目期间开始收到以下警告:

1>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\VC\VCTargets\Platforms\x64\PlatformToolsets\v141_xp\Toolset.targets(39,5): warning MSB8051: Support for targeting Windows XP is deprecated and will not be present in future releases of Visual Studio. Please see https://go.microsoft.com/fwlink/?linkid=2023588 for more information.



如何禁用此警告?

下面是项目配置:

enter image description here

最佳答案

将此添加到您的 .vcxproj 文件中,或者添加到现有的 PropertyGroup 或它自己的一个。

<PropertyGroup>
<XPDeprecationWarning>false</XPDeprecationWarning>
</PropertyGroup>

或通过命令行
msbuild [project file] /p:XPDeprecationWarning=false

另一种可能性是转到您的“属性管理器”窗口并“添加新的属性表...”到您的项目中。右键单击新工作表并选择“通用属性”->“用户宏”->“添加宏”并使用名称 XPDeprecationWarning 和值 false。遗憾的是,您不能只在您的项目中执行此操作,因为 Visual Studio 不允许您使用 GUI 来编辑根项目文件上的 UserMacros(我一直想知道为什么文件中存在节点)。

这些都应该做完全相同的事情,所以如果一个不适合你,那么我不确定为什么其他任何一个会更成功。

关于mfc - 如何在 VS2017 中禁用 "warning MSB8051: Support for targeting Windows XP is deprecated"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53841470/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com