Minimum version of Windows for Centennial Apps

一世执手 提交于 2020-01-13 07:16:41

问题


What is the minimum version of Windows to be able to run Centennial Apps from the Windows Store?


回答1:


Minimum version of Windows to use desktop bridge apps is Windows 10 Anniversary Update. This is Version 1607 (OS Build 14393). This is because desktop-bridge requires containers feature which is only available since Windows 10 Anniversary Update.

Keep in mind however that developer can target higher version of Windows through MinVersion field under TargetDeviceFamily tag inside AppxManifest.xml.

Here is example of targeting Windows 10 Anniversary Update:

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

Source:

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

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



来源:https://stackoverflow.com/questions/43925140/minimum-version-of-windows-for-centennial-apps

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!