Visual Studio 2015 将目标平台更改为 windows 7

2021-12-30 00:00:00 windows c++ visual-studio-2015

如何将目标平台更改为 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.

相关文章