commit 060437285936da13671df90742bcce3a3252c6a6 parent 7c88038590a3cf25300ed2753b1a97600472b70f Author: Chacón <lechacon@users.noreply.github.com> Date: Tue, 25 May 2021 13:24:33 -0700 Update min supported version to 1809 (#896) Diffstat:
14 files changed, 25 insertions(+), 25 deletions(-)
diff --git a/README.md b/README.md @@ -10,7 +10,7 @@ The packages available to the client are in the [Community repo](https://github. ## Installing the client -> The client requires Windows 10 1709 (build 16299) or later at this time. +> The client requires Windows 10 1809 (build 17763) or later at this time. ### Microsoft Store [Recommended] @@ -73,7 +73,7 @@ The **Package Manager Service** is responsible for approving Pull Requests. It ### Prerequisites -* Windows 10 1709 (16299) or later +* Windows 10 1809 (17763) or later * [Developer Mode enabled](https://docs.microsoft.com/en-us/windows/uwp/get-started/enable-your-device-for-development) * [Visual Studio 2019](https://visualstudio.microsoft.com/downloads/) * Or use winget to install it ;) (although you may need to adjust the workloads via Tools->Get Tools and Features...) diff --git a/doc/admx/DesktopAppInstaller.admx b/doc/admx/DesktopAppInstaller.admx @@ -15,7 +15,7 @@ <policies> <policy name="EnableAppInstaller" class="Machine" displayName="$(string.EnableAppInstaller)" explainText="$(string.EnableAppInstallerExplanation)" key="Software\Policies\Microsoft\Windows\AppInstaller" valueName="EnableAppInstaller"> <parentCategory ref="AppInstaller" /> - <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS3" /> + <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS5" /> <enabledValue> <decimal value="1" /> </enabledValue> @@ -25,7 +25,7 @@ </policy> <policy name="EnableSettings" class="Machine" displayName="$(string.EnableSettings)" explainText="$(string.EnableSettingsExplanation)" key="Software\Policies\Microsoft\Windows\AppInstaller" valueName="EnableSettings"> <parentCategory ref="AppInstaller" /> - <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS3" /> + <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS5" /> <enabledValue> <decimal value="1" /> </enabledValue> @@ -35,7 +35,7 @@ </policy> <policy name="EnableExperimentalFeatures" class="Machine" displayName="$(string.EnableExperimentalFeatures)" explainText="$(string.EnableExperimentalFeaturesExplanation)" key="Software\Policies\Microsoft\Windows\AppInstaller" valueName="EnableExperimentalFeatures"> <parentCategory ref="AppInstaller" /> - <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS3" /> + <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS5" /> <enabledValue> <decimal value="1" /> </enabledValue> @@ -45,7 +45,7 @@ </policy> <policy name="EnableLocalManifestFiles" class="Machine" displayName="$(string.EnableLocalManifestFiles)" explainText="$(string.EnableLocalManifestFilesExplanation)" key="Software\Policies\Microsoft\Windows\AppInstaller" valueName="EnableLocalManifestFiles"> <parentCategory ref="AppInstaller" /> - <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS3" /> + <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS5" /> <enabledValue> <decimal value="1" /> </enabledValue> @@ -55,7 +55,7 @@ </policy> <policy name="EnableHashOverride" class="Machine" displayName="$(string.EnableHashOverride)" explainText="$(string.EnableHashOverrideExplanation)" key="Software\Policies\Microsoft\Windows\AppInstaller" valueName="EnableHashOverride"> <parentCategory ref="AppInstaller" /> - <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS3" /> + <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS5" /> <enabledValue> <decimal value="1" /> </enabledValue> @@ -65,7 +65,7 @@ </policy> <policy name="EnableDefaultSource" class="Machine" displayName="$(string.EnableDefaultSource)" explainText="$(string.EnableDefaultSourceExplanation)" key="Software\Policies\Microsoft\Windows\AppInstaller" valueName="EnableDefaultSource"> <parentCategory ref="AppInstaller" /> - <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS3" /> + <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS5" /> <enabledValue> <decimal value="1" /> </enabledValue> @@ -75,7 +75,7 @@ </policy> <policy name="EnableMicrosoftStoreSource" class="Machine" displayName="$(string.EnableMicrosoftStoreSource)" explainText="$(string.EnableMicrosoftStoreSourceExplanation)" key="Software\Policies\Microsoft\Windows\AppInstaller" valueName="EnableMicrosoftStoreSource"> <parentCategory ref="AppInstaller" /> - <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS3" /> + <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS5" /> <enabledValue> <decimal value="1" /> </enabledValue> @@ -85,14 +85,14 @@ </policy> <policy name="SourceAutoUpdateIntervalInMinutes" class="Machine" displayName="$(string.SourceAutoUpdateIntervalInMinutes)" explainText="$(string.SourceAutoUpdateIntervalInMinutesExplanation)" presentation="$(presentation.SourceAutoUpdateIntervalInMinutes)" key="Software\Policies\Microsoft\Windows\AppInstaller"> <parentCategory ref="AppInstaller" /> - <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS3" /> + <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS5" /> <elements> <decimal id="SourceAutoUpdateIntervalInMinutes" valueName="SourceAutoUpdateIntervalInMinutes" maxValue="43200" /> </elements> </policy> <policy name="EnableAdditionalSources" class="Machine" displayName="$(string.EnableAdditionalSources)" explainText="$(string.EnableAdditionalSourcesExplanation)" presentation="$(presentation.AdditionalSources)" key="Software\Policies\Microsoft\Windows\AppInstaller" valueName="EnableAdditionalSources"> <parentCategory ref="AppInstaller" /> - <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS3" /> + <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS5" /> <enabledValue> <decimal value="1" /> </enabledValue> @@ -105,7 +105,7 @@ </policy> <policy name="EnableAllowedSources" class="Machine" displayName="$(string.EnableAllowedSources)" explainText="$(string.EnableAllowedSourcesExplanation)" presentation="$(presentation.AllowedSources)" key="Software\Policies\Microsoft\Windows\AppInstaller" valueName="EnableAllowedSources"> <parentCategory ref="AppInstaller" /> - <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS3" /> + <supportedOn ref="windows:SUPPORTED_Windows_10_0_RS5" /> <enabledValue> <decimal value="1" /> </enabledValue> diff --git a/src/AppInstallerCLI/AppInstallerCLI.vcxproj b/src/AppInstallerCLI/AppInstallerCLI.vcxproj @@ -10,7 +10,7 @@ <Keyword>Win32Proj</Keyword> <RootNamespace>AppInstallerCLI</RootNamespace> <WindowsTargetPlatformVersion Condition=" '$(WindowsTargetPlatformVersion)' == '' ">10.0.18362.0</WindowsTargetPlatformVersion> - <WindowsTargetPlatformMinVersion>10.0.16299.0</WindowsTargetPlatformMinVersion> + <WindowsTargetPlatformMinVersion>10.0.17763.0</WindowsTargetPlatformMinVersion> <WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport> <WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support> </PropertyGroup> diff --git a/src/AppInstallerCLICore/AppInstallerCLICore.vcxproj b/src/AppInstallerCLICore/AppInstallerCLICore.vcxproj @@ -10,7 +10,7 @@ <Keyword>Win32Proj</Keyword> <RootNamespace>AppInstallerCLICore</RootNamespace> <WindowsTargetPlatformVersion Condition=" '$(WindowsTargetPlatformVersion)' == '' ">10.0.18362.0</WindowsTargetPlatformVersion> - <WindowsTargetPlatformMinVersion>10.0.16299.0</WindowsTargetPlatformMinVersion> + <WindowsTargetPlatformMinVersion>10.0.17763.0</WindowsTargetPlatformMinVersion> <WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport> <WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support> </PropertyGroup> diff --git a/src/AppInstallerCLIE2ETests/TestData/IndexPackageManifest.xml b/src/AppInstallerCLIE2ETests/TestData/IndexPackageManifest.xml @@ -15,7 +15,7 @@ </Properties> <Dependencies> - <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.16299.0" MaxVersionTested="10.0.18287.0" /> + <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.18287.0" /> </Dependencies> <Applications> diff --git a/src/AppInstallerCLIE2ETests/TestData/Package/AppxManifest.xml b/src/AppInstallerCLIE2ETests/TestData/Package/AppxManifest.xml @@ -18,7 +18,7 @@ </Properties> <Dependencies> - <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.16299.0" MaxVersionTested="10.0.18287.0" /> + <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.18287.0" /> </Dependencies> <Applications> diff --git a/src/AppInstallerCLIPackage/AppInstallerCLIPackage.wapproj b/src/AppInstallerCLIPackage/AppInstallerCLIPackage.wapproj @@ -52,7 +52,7 @@ <PropertyGroup> <ProjectGuid>6aa3791a-0713-4548-a357-87a323e7ac3a</ProjectGuid> <TargetPlatformVersion>10.0.18362.0</TargetPlatformVersion> - <TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion> + <TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion> <DefaultLanguage>en-US</DefaultLanguage> <AppxPackageSigningEnabled>false</AppxPackageSigningEnabled> <EntryPointProjectUniqueName>..\AppInstallerCLI\AppInstallerCLI.vcxproj</EntryPointProjectUniqueName> diff --git a/src/AppInstallerCLIPackage/Package.appxmanifest b/src/AppInstallerCLIPackage/Package.appxmanifest @@ -13,8 +13,8 @@ <Logo>Images\StoreLogo.png</Logo> </Properties> <Dependencies> - <!-- Minimum supported version is 1709 (Fall Creators Update, aka RS3) --> - <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.16299.0" MaxVersionTested="10.0.19033.0" /> + <!-- Minimum supported version is 1809 (October 2018 Update, aka RS5) --> + <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19033.0" /> <PackageDependency Name="Microsoft.VCLibs.140.00.UWPDesktop" MinVersion="14.0.25426.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" /> </Dependencies> <Resources> diff --git a/src/AppInstallerCommonCore/AppInstallerCommonCore.vcxproj b/src/AppInstallerCommonCore/AppInstallerCommonCore.vcxproj @@ -10,7 +10,7 @@ <Keyword>Win32Proj</Keyword> <RootNamespace>AppInstallerLoggingCore</RootNamespace> <WindowsTargetPlatformVersion Condition=" '$(WindowsTargetPlatformVersion)' == '' ">10.0.18362.0</WindowsTargetPlatformVersion> - <WindowsTargetPlatformMinVersion>10.0.16299.0</WindowsTargetPlatformMinVersion> + <WindowsTargetPlatformMinVersion>10.0.17763.0</WindowsTargetPlatformMinVersion> <WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport> <WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support> </PropertyGroup> diff --git a/src/AppInstallerRepositoryCore/AppInstallerRepositoryCore.vcxproj b/src/AppInstallerRepositoryCore/AppInstallerRepositoryCore.vcxproj @@ -10,7 +10,7 @@ <Keyword>Win32Proj</Keyword> <RootNamespace>AppInstallerRepositoryCore</RootNamespace> <WindowsTargetPlatformVersion Condition=" '$(WindowsTargetPlatformVersion)' == '' ">10.0.18362.0</WindowsTargetPlatformVersion> - <WindowsTargetPlatformMinVersion>10.0.16299.0</WindowsTargetPlatformMinVersion> + <WindowsTargetPlatformMinVersion>10.0.17763.0</WindowsTargetPlatformMinVersion> <WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport> <WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support> </PropertyGroup> diff --git a/src/AppInstallerRepositoryCore/Microsoft/Schema/1_1/ManifestMetadataTable.cpp b/src/AppInstallerRepositoryCore/Microsoft/Schema/1_1/ManifestMetadataTable.cpp @@ -74,7 +74,7 @@ namespace AppInstaller::Repository::Microsoft::Schema::V1_1 // First, we attempt to update an existing row. If not changes occurred, we then insert the new value. // UPSERT (aka ON CONFLICT) is not available to us, as it was only introduced in 3.24.0 (2018-06-04), - // and we need to support Windows 10 (16299) which was released in 2017. + // and we need to support Windows 10 (17763) which was released in 2017. StatementBuilder updateBuilder; updateBuilder.Update(s_ManifestMetadataTable_Table_Name).Set().Column(s_ManifestMetadataTable_Value_Column).Equals(value). Where(s_ManifestMetadataTable_Manifest_Column).Equals(manifestId).And(s_ManifestMetadataTable_Metadata_Column).Equals(metadata); diff --git a/src/AppInstallerTestExeInstaller/AppInstallerTestExeInstaller.vcxproj b/src/AppInstallerTestExeInstaller/AppInstallerTestExeInstaller.vcxproj @@ -6,7 +6,7 @@ <Keyword>Win32Proj</Keyword> <RootNamespace>AppInstallerTestExeInstaller</RootNamespace> <WindowsTargetPlatformVersion Condition=" '$(WindowsTargetPlatformVersion)' == '' ">10.0.18362.0</WindowsTargetPlatformVersion> - <WindowsTargetPlatformMinVersion>10.0.16299.0</WindowsTargetPlatformMinVersion> + <WindowsTargetPlatformMinVersion>10.0.17763.0</WindowsTargetPlatformMinVersion> <WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport> <WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support> </PropertyGroup> diff --git a/src/AppInstallerTestMsixInstaller/AppInstallerTestMsixInstaller.wapproj b/src/AppInstallerTestMsixInstaller/AppInstallerTestMsixInstaller.wapproj @@ -52,7 +52,7 @@ <PropertyGroup> <ProjectGuid>3e2cba31-ceba-4d63-bf52-49c0718e19ea</ProjectGuid> <TargetPlatformVersion>10.0.18362.0</TargetPlatformVersion> - <TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion> + <TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion> <DefaultLanguage>en-US</DefaultLanguage> <AppxPackageSigningEnabled>false</AppxPackageSigningEnabled> <EntryPointProjectUniqueName>..\AppInstallerTestExeInstaller\AppInstallerTestExeInstaller.vcxproj</EntryPointProjectUniqueName> diff --git a/src/WinGetUtil/WinGetUtil.vcxproj b/src/WinGetUtil/WinGetUtil.vcxproj @@ -10,7 +10,7 @@ <Keyword>Win32Proj</Keyword> <RootNamespace>WinGetUtil</RootNamespace> <WindowsTargetPlatformVersion Condition=" '$(WindowsTargetPlatformVersion)' == '' ">10.0.18362.0</WindowsTargetPlatformVersion> - <WindowsTargetPlatformMinVersion>10.0.16299.0</WindowsTargetPlatformMinVersion> + <WindowsTargetPlatformMinVersion>10.0.17763.0</WindowsTargetPlatformMinVersion> <WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport> <WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support> </PropertyGroup>