问题
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