1

能够从 Windows 应用商店运行 Centennial 应用程序的最低 Windows 版本是多少?

4

1 回答 1

4

使用桌面桥应用程序的最低 Windows 版本是Windows 10 周年更新。这是版本 1607(操作系统内部版本14393)。这是因为桌面桥需要容器功能,该功能仅在 Windows 10 周年更新后可用。

但是请记住,开发人员可以通过 AppxManifest.xml 中 TargetDeviceFamily 标记下的 MinVersion 字段来定位更高版本的 Windows。

以下是针对 Windows 10 周年更新的示例:

  <Dependencies>
    <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14393.0" MaxVersionTested="10.0.14393.0" />
  </Dependencies>

资源:

https://docs.microsoft.com/en-us/windows/uwp/porting/desktop-to-uwp-run-desktop-app-converter#make-sure-that-your-system-can-run-the-转换器

http://www.windowscentral.com/windows-10-anniversary-update-project-centennial-apps-store

于 2017-05-11T22:32:21.970 回答