From 3f8b44d11b52b479aeca0ee905cc8c4a8a633d5c Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Thu, 12 Aug 2021 14:12:39 -0700 Subject: [PATCH 1/3] Centralize bundled versions Add a 50 bundled version as not all three were changing at once. Modify the code to use the 31 and 21 versions. This way, we only ever have to update one set of numbers each month rather than 3. --- .../targets/GenerateBundledVersions.targets | 21 ++++++++++--------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/src/redist/targets/GenerateBundledVersions.targets b/src/redist/targets/GenerateBundledVersions.targets index da67b016d..8aea8c056 100644 --- a/src/redist/targets/GenerateBundledVersions.targets +++ b/src/redist/targets/GenerateBundledVersions.targets @@ -25,8 +25,9 @@ - $([MSBuild]::Add($(VersionFeature), 29)) + 30 $([MSBuild]::Add($(VersionFeature), 18)) + $([MSBuild]::Add($(VersionFeature), 9)) @@ -39,29 +40,29 @@ <_NETStandardLibraryPackageVersion>$(NETStandardLibraryRefPackageVersion) <_NETCorePlatformsPackageVersion>$(MicrosoftNETCorePlatformsPackageVersion) - <_NET50RuntimePackVersion>5.0.9 + <_NET50RuntimePackVersion>5.0.$(VersionFeature50) <_NET50TargetingPackVersion>5.0.0 - <_WindowsDesktop50RuntimePackVersion>5.0.8 + <_WindowsDesktop50RuntimePackVersion>5.0.$(VersionFeature50) <_WindowsDesktop50TargetingPackVersion>5.0.0 - <_AspNet50RuntimePackVersion>5.0.9 + <_AspNet50RuntimePackVersion>5.0.$(VersionFeature50) <_AspNet50TargetingPackVersion>5.0.0 <_NETCoreApp30RuntimePackVersion>3.0.3 <_NETCoreApp30TargetingPackVersion>3.0.0 - <_NETCoreApp31RuntimePackVersion>3.1.18 + <_NETCoreApp31RuntimePackVersion>3.1.$(VersionFeature31) <_NETCoreApp31TargetingPackVersion>3.1.0 <_WindowsDesktop30RuntimePackVersion>3.0.3 <_WindowsDesktop30TargetingPackVersion>3.0.0 - <_WindowsDesktop31RuntimePackVersion>3.1.17 + <_WindowsDesktop31RuntimePackVersion>3.1.$(VersionFeature31) <_WindowsDesktop31TargetingPackVersion>3.1.0 <_AspNet30RuntimePackVersion>3.0.3 <_AspNet30TargetingPackVersion>3.0.1 - <_AspNet31RuntimePackVersion>3.1.18 + <_AspNet31RuntimePackVersion>3.1.$(VersionFeature31) <_AspNet31TargetingPackVersion>3.1.10 @@ -221,7 +222,7 @@ + LatestVersion="2.1.$(VersionFeature21)" /> + LatestVersion="2.1.$(VersionFeature21)"/> + LatestVersion="2.1.$(VersionFeature21)"/> Date: Thu, 12 Aug 2021 14:25:46 -0700 Subject: [PATCH 2/3] Update GenerateBundledVersions.targets --- src/redist/targets/GenerateBundledVersions.targets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/redist/targets/GenerateBundledVersions.targets b/src/redist/targets/GenerateBundledVersions.targets index 8aea8c056..21d035d9b 100644 --- a/src/redist/targets/GenerateBundledVersions.targets +++ b/src/redist/targets/GenerateBundledVersions.targets @@ -26,8 +26,8 @@ 30 - $([MSBuild]::Add($(VersionFeature), 18)) - $([MSBuild]::Add($(VersionFeature), 9)) + 18 + 9 From 712d2da2be4032f96ceacccc8f8e22df85d17d5a Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Fri, 13 Aug 2021 14:58:15 -0700 Subject: [PATCH 3/3] Update GenerateBundledVersions.targets --- src/redist/targets/GenerateBundledVersions.targets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redist/targets/GenerateBundledVersions.targets b/src/redist/targets/GenerateBundledVersions.targets index 21d035d9b..2021d52ec 100644 --- a/src/redist/targets/GenerateBundledVersions.targets +++ b/src/redist/targets/GenerateBundledVersions.targets @@ -25,7 +25,7 @@ - 30 + 29 18 9