Visual Studio 2015 Change target platform to windows 7(Visual Studio 2015 将目标平台更改为 windows 7)
问题描述
如何将目标平台更改为 Windows 7?我只能选择 Windows 8.1,因此我的项目不能在 Windows 7 上运行.我曾经在使用 Visual Studio 2013 的旧 Windows 7 PC 上编译的同一个项目.当然它在那里工作.
How can I change the target platform to Windows 7? All I can chose is Windows 8.1 and therefore my project does not run on Windows 7. The same project I used to compile on my old Windows 7 PC with Visual Studio 2013. And of course it worked there.
我已经尝试安装 Windows 7 SDK,但遗憾的是这不起作用,因为它需要 Net Framework 4.0,我无法再安装.(Windows 10 包括 4.6?) - https://msdn.microsoft.com/en-我们/en-en/library/ff770576.aspx
I already tried to install Windows 7 SDK but sadly this does not work since it requites Net Framework 4.0 which I can not install anymore. (Windows 10 includes 4.6?) - https://msdn.microsoft.com/en-us/en-en/library/ff770576.aspx
谢谢.
推荐答案
来自 MSDN:
目标平台版本
[...]
要面向 Windows 7 或 Windows Vista,请使用值 8.1,因为 Windows SDK 8.1 向后兼容这些平台.此外,您应该在 targetver.h 中为 _WIN32_WINNT 定义适当的值.对于 Windows 7,这是 0x0601.请参阅修改 WINVER 和 _WIN32_WINNT.
To target Windows 7 or Windows Vista, use the value 8.1, since Windows SDK 8.1 is backward compatible to those platforms. In addition, you should define the appropriate value for _WIN32_WINNT in targetver.h. For Windows 7, that's 0x0601. See Modifying WINVER and _WIN32_WINNT.
这篇关于Visual Studio 2015 将目标平台更改为 windows 7的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Visual Studio 2015 将目标平台更改为 windows 7
基础教程推荐
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01