From 12c30eeb324e9ef755f2c4db1e014ebd6e45d09d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 13 Apr 2022 09:44:29 -0700 Subject: [PATCH 01/77] Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20220413.1 (#13623) Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 6.0.0-servicing.22208.1 -> To Version 6.0.0-servicing.22213.1 Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 131a316f0..cf180107c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -211,9 +211,9 @@ https://github.com/dotnet/arcade 1a6b24397e50146d0fece9cfb9c0b87275691e6f - + https://github.com/dotnet/source-build-reference-packages - e5429803f3e9064da8a857b561a07489800f3f29 + 60845bf36f0dd6dd310070548a58cb8ad3ab513c From 3ddadcc14fa8d48f661d109ca48904b428db0d05 Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Wed, 13 Apr 2022 13:33:27 -0700 Subject: [PATCH 02/77] Update all workloads to the April release of 6.0.300 manifests --- eng/Versions.props | 14 +++++++------- src/redist/targets/BundledManifests.targets | 16 ++++++++-------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index 74baf5b81..0c8afac5b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -176,13 +176,13 @@ - 6.0.200-preview.13.2747 - 31.0.200-preview.13.41 - 15.2.301-preview.13.2 - 15.2.301-preview.13.2 - 12.1.301-preview.13.2 - 15.2.301-preview.13.2 - $(MicrosoftNETCoreAppRefPackageVersion) + 6.0.300-rc.1.5355 + 32.0.300-rc.1.4 + 15.4.100-rc.1.125 + 15.4.100-rc.1.125 + 12.3.100-rc.1.125 + 15.4.100-rc.1.125 + 6.0.4 6.0.4 $(MicrosoftNETWorkloadEmscriptenManifest60200Version) diff --git a/src/redist/targets/BundledManifests.targets b/src/redist/targets/BundledManifests.targets index 3618623f1..7b8536e48 100644 --- a/src/redist/targets/BundledManifests.targets +++ b/src/redist/targets/BundledManifests.targets @@ -1,13 +1,13 @@ - - - - - - - - + + + + + + + + From fc36133df95827a16ad57e8bf8abdeb49aa6afc9 Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Wed, 13 Apr 2022 16:49:20 -0700 Subject: [PATCH 03/77] Update Version.Details.xml --- eng/Version.Details.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 057327f53..0cd745f93 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -166,7 +166,7 @@ 698fdad58fa64a55f16cd9562c90224cc498ed02 - + https://github.com/dotnet/emsdk 52e9452f82e26f9fcae791e84c082ae22f1ef66f From 9563e594c5a7a945df14f775eda7680a5faaf8ec Mon Sep 17 00:00:00 2001 From: Logan Bussell Date: Wed, 13 Apr 2022 17:43:13 -0700 Subject: [PATCH 04/77] [release/6.0.1xx] Retry source-build artifacts download on failure (#13591) * retry source-built artifacts download with curl --- src/SourceBuild/tarball/content/prep.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SourceBuild/tarball/content/prep.sh b/src/SourceBuild/tarball/content/prep.sh index e3225d309..56e00219f 100755 --- a/src/SourceBuild/tarball/content/prep.sh +++ b/src/SourceBuild/tarball/content/prep.sh @@ -79,13 +79,13 @@ while read -r line; do if [[ $line == *"Private.SourceBuilt.Artifacts"* ]]; then if [ "$downloadArtifacts" == "true" ]; then echo " Downloading source-built artifacts from $line..." - (cd $SCRIPT_ROOT/packages/archive/ && curl -O $line) + (cd $SCRIPT_ROOT/packages/archive/ && curl --retry 5 -O $line) fi fi if [[ $line == *"Private.SourceBuilt.Prebuilts"* ]]; then if [ "$downloadPrebuilts" == "true" ]; then echo " Downloading source-built prebuilts from $line..." - (cd $SCRIPT_ROOT/packages/archive/ && curl -O $line) + (cd $SCRIPT_ROOT/packages/archive/ && curl --retry 5 -O $line) fi fi done < $SCRIPT_ROOT/packages/archive/archiveArtifacts.txt From 9104a1f6e4ee461f9b650eafde0187ad58863100 Mon Sep 17 00:00:00 2001 From: Michael Simons Date: Wed, 13 Apr 2022 21:49:19 -0500 Subject: [PATCH 05/77] Add patch for linker prebuilt (#13630) --- ...e-BannedApiAnalyzers-usage-in-source.patch | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/SourceBuild/tarball/patches/linker/0001-Condition-out-the-BannedApiAnalyzers-usage-in-source.patch diff --git a/src/SourceBuild/tarball/patches/linker/0001-Condition-out-the-BannedApiAnalyzers-usage-in-source.patch b/src/SourceBuild/tarball/patches/linker/0001-Condition-out-the-BannedApiAnalyzers-usage-in-source.patch new file mode 100644 index 000000000..f7d7668dc --- /dev/null +++ b/src/SourceBuild/tarball/patches/linker/0001-Condition-out-the-BannedApiAnalyzers-usage-in-source.patch @@ -0,0 +1,24 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: MichaelSimons +Date: Wed, 13 Apr 2022 21:30:39 +0000 +Subject: [PATCH] Condition out the BannedApiAnalyzers usage in source-build + +Removes prebuilt. +Patch for https://github.com/dotnet/linker/pull/2742 +--- + src/linker/Mono.Linker.csproj | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/linker/Mono.Linker.csproj b/src/linker/Mono.Linker.csproj +index 391300aa..d276003e 100644 +--- a/src/linker/Mono.Linker.csproj ++++ b/src/linker/Mono.Linker.csproj +@@ -31,7 +31,7 @@ + + + +- ++ + runtime; build; native; contentfiles; analyzers; buildtransitive + all + From 6ac60f74ebab454c7924eb1df20239d238a7f7cc Mon Sep 17 00:00:00 2001 From: Jason Zhai Date: Wed, 13 Apr 2022 23:55:34 -0700 Subject: [PATCH 06/77] Restore the version.details.xml file --- eng/Version.Details.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index cf180107c..131a316f0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -211,9 +211,9 @@ https://github.com/dotnet/arcade 1a6b24397e50146d0fece9cfb9c0b87275691e6f - + https://github.com/dotnet/source-build-reference-packages - 60845bf36f0dd6dd310070548a58cb8ad3ab513c + e5429803f3e9064da8a857b561a07489800f3f29 From 934c23764044ed14f69962ddc54e992c25e417ab Mon Sep 17 00:00:00 2001 From: Michael Simons Date: Thu, 14 Apr 2022 09:45:34 -0500 Subject: [PATCH 07/77] Update source-built artifacts version (#13638) --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 74baf5b81..65684028e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -172,7 +172,7 @@ or minor release, prebuilts may be needed. When the release is mature, prebuilts are not necessary, and this property is removed from the file. --> - 6.0.1-1 + 6.0.104 From 8ed3ae9f13375dfca27de419dea303ac4a02f2aa Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Thu, 14 Apr 2022 13:17:10 -0700 Subject: [PATCH 08/77] Fix the source build leg for the 300 workloads --- .../Arcade/tools/TextOnlyPackages.csproj | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/SourceBuild/Arcade/tools/TextOnlyPackages.csproj b/src/SourceBuild/Arcade/tools/TextOnlyPackages.csproj index f7cad5354..7faf06dfb 100644 --- a/src/SourceBuild/Arcade/tools/TextOnlyPackages.csproj +++ b/src/SourceBuild/Arcade/tools/TextOnlyPackages.csproj @@ -11,14 +11,14 @@ should be added to source-build-reference-packages. --> - - - - - - - - + + + + + + + + @@ -48,9 +48,9 @@ https://github.com/dotnet/core-setup 7d57652f33493fa022125b7f63aad0d70c52d810 - + https://github.com/dotnet/runtime - 74e1d4df5733dda34a601a004aae720718184788 + a39ddca87f9d8e99d74ef44f280761bde578aca2 https://github.com/dotnet/aspnetcore @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 6c5d3376a4f581090be1f8cd453907166209fe4f + 23254dd94661f1e486a14a6baff0510029088e5e - + https://github.com/dotnet/sdk - 6c5d3376a4f581090be1f8cd453907166209fe4f + 23254dd94661f1e486a14a6baff0510029088e5e @@ -141,9 +141,9 @@ linker - + https://github.com/dotnet/roslyn - 7a9af1cec6aa75c9e3ae0a142adcdb094aa0253b + f2d278f9a5131b7944d6ac5fecf2ce5b0a98195f diff --git a/eng/Versions.props b/eng/Versions.props index 02f899e50..3f518a78b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,24 +64,24 @@ - 7.0.100-preview.4.22218.15 - 7.0.100-preview.4.22218.15 + 7.0.100-preview.4.22218.18 + 7.0.100-preview.4.22218.18 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) - 7.0.0-preview.4.22217.5 + 7.0.0-preview.4.22216.4 - 7.0.0-preview.4.22217.5 - 7.0.0-preview.4.22217.5 - 7.0.0-preview.4.22217.5 - 7.0.0-preview.4.22217.5 - 7.0.0-preview.4.22217.5 - 7.0.0-preview.4.22217.5 + 7.0.0-preview.4.22216.4 + 7.0.0-preview.4.22216.4 + 7.0.0-preview.4.22216.4 + 7.0.0-preview.4.22216.4 + 7.0.0-preview.4.22216.4 + 7.0.0-preview.4.22216.4 2.1.0 From 84ed3b096151553cc18e5a2af2f439bdc199f021 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 19 Apr 2022 04:52:16 +0000 Subject: [PATCH 11/77] Update dependencies from https://github.com/dotnet/sdk build 20220418.19 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.4.22218.19 Dependency coherency updates Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.5 -> To Version 7.0.0-preview.4.22216.4 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e01ff4deb..168a73496 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 23254dd94661f1e486a14a6baff0510029088e5e + cbe17204882a6f0e1d45e363f447515897383057 - + https://github.com/dotnet/sdk - 23254dd94661f1e486a14a6baff0510029088e5e + cbe17204882a6f0e1d45e363f447515897383057 @@ -135,9 +135,9 @@ 5eba36183bb2596d7b9f89291dc8e3e9fb4c20a6 - + https://github.com/dotnet/linker - 6564aad35881703832aab9edb81558e0b6dd5698 + 1ba806627cb47cc106c6207df185cf475db94f4b linker diff --git a/eng/Versions.props b/eng/Versions.props index 3f518a78b..01b019c42 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.4.22218.18 - 7.0.100-preview.4.22218.18 + 7.0.100-preview.4.22218.19 + 7.0.100-preview.4.22218.19 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From f5156d871fca700f28437b401079634d6e90c500 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 19 Apr 2022 08:39:23 +0000 Subject: [PATCH 12/77] Update dependencies from https://github.com/dotnet/sdk build 20220419.1 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.4.22219.1 Dependency coherency updates Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.5 -> To Version 7.0.0-preview.4.22216.4 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 168a73496..841b357da 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -52,30 +52,30 @@ https://github.com/dotnet/runtime a39ddca87f9d8e99d74ef44f280761bde578aca2 - + https://github.com/dotnet/aspnetcore - 7a1a1ebf86fb24d84cefd45e05534c79708c7947 + 315febea92949d03545581f53fbbb8cf56806a75 - + https://github.com/dotnet/aspnetcore - 7a1a1ebf86fb24d84cefd45e05534c79708c7947 + 315febea92949d03545581f53fbbb8cf56806a75 - + https://github.com/dotnet/aspnetcore - 7a1a1ebf86fb24d84cefd45e05534c79708c7947 + 315febea92949d03545581f53fbbb8cf56806a75 - + https://github.com/dotnet/aspnetcore - 7a1a1ebf86fb24d84cefd45e05534c79708c7947 + 315febea92949d03545581f53fbbb8cf56806a75 - + https://github.com/dotnet/aspnetcore - 7a1a1ebf86fb24d84cefd45e05534c79708c7947 + 315febea92949d03545581f53fbbb8cf56806a75 - + https://github.com/dotnet/aspnetcore - 7a1a1ebf86fb24d84cefd45e05534c79708c7947 + 315febea92949d03545581f53fbbb8cf56806a75 https://github.com/dotnet/test-templates @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - cbe17204882a6f0e1d45e363f447515897383057 + ea7ffd2093cf897502884043a310bac71836a7e2 - + https://github.com/dotnet/sdk - cbe17204882a6f0e1d45e363f447515897383057 + ea7ffd2093cf897502884043a310bac71836a7e2 diff --git a/eng/Versions.props b/eng/Versions.props index 01b019c42..a011e6501 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,20 +52,20 @@ - 7.0.0-preview.4.22218.8 - 7.0.0-preview.4.22218.8 - 7.0.0-preview.4.22218.8 - 7.0.0-preview.4.22218.8 - 7.0.0-preview.4.22218.8 - 7.0.0-preview.4.22218.8 + 7.0.0-preview.4.22218.14 + 7.0.0-preview.4.22218.14 + 7.0.0-preview.4.22218.14 + 7.0.0-preview.4.22218.14 + 7.0.0-preview.4.22218.14 + 7.0.0-preview.4.22218.14 0.2.0 - 7.0.100-preview.4.22218.19 - 7.0.100-preview.4.22218.19 + 7.0.100-preview.4.22219.1 + 7.0.100-preview.4.22219.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 8295b82778f67e147eb96ee35500dbcaf3440c4c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 19 Apr 2022 11:14:32 +0000 Subject: [PATCH 13/77] Update dependencies from https://github.com/dotnet/sdk build 20220419.4 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.4.22219.4 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.4.22218.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 36 ++++++++++++++++++------------------ eng/Versions.props | 16 ++++++++-------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 841b357da..ed3d5e4d2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,21 +1,21 @@ - + https://github.com/dotnet/windowsdesktop - 81b8d1656732c9fd5385e103f11e42988c07ec0b + 757d9c8200da8e111f421f3ab4073d9dadb397d3 - + https://github.com/dotnet/windowsdesktop - 81b8d1656732c9fd5385e103f11e42988c07ec0b + 757d9c8200da8e111f421f3ab4073d9dadb397d3 - + https://github.com/dotnet/windowsdesktop - 81b8d1656732c9fd5385e103f11e42988c07ec0b + 757d9c8200da8e111f421f3ab4073d9dadb397d3 - + https://github.com/dotnet/windowsdesktop - 81b8d1656732c9fd5385e103f11e42988c07ec0b + 757d9c8200da8e111f421f3ab4073d9dadb397d3 https://github.com/dotnet/runtime @@ -103,23 +103,23 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - ea7ffd2093cf897502884043a310bac71836a7e2 + 7d080d485de22be74355942d09c9ab0444f1e78f - + https://github.com/dotnet/sdk - ea7ffd2093cf897502884043a310bac71836a7e2 + 7d080d485de22be74355942d09c9ab0444f1e78f - + https://github.com/dotnet/winforms - 945d389d80122054e2e24766ede9df8bba573e03 + 93c70498ef90a33ff64c66ad00ba067a12ce82fc - + https://github.com/dotnet/wpf - 505179b0962cd6d607e87d60efa0859e953c5e3c + 39f8a853a0e4f2fc5d46e1c3e3dad07c58067925 https://github.com/dotnet/fsharp @@ -135,9 +135,9 @@ 5eba36183bb2596d7b9f89291dc8e3e9fb4c20a6 - + https://github.com/dotnet/linker - 1ba806627cb47cc106c6207df185cf475db94f4b + 5c69665bbb929b8decacb266dc2edeb3e32b9858 linker diff --git a/eng/Versions.props b/eng/Versions.props index a011e6501..79ccefe04 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -30,11 +30,11 @@ - 7.0.0-preview.4.22216.2 + 7.0.0-preview.4.22217.2 - 7.0.0-preview.4.22216.2 + 7.0.0-preview.4.22217.3 @@ -64,8 +64,8 @@ - 7.0.100-preview.4.22219.1 - 7.0.100-preview.4.22219.1 + 7.0.100-preview.4.22219.4 + 7.0.100-preview.4.22219.4 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -86,10 +86,10 @@ - 7.0.0-preview.4.22217.1 - 7.0.0-preview.4.22217.1 - 7.0.0-preview.4.22217.1 - 7.0.0-preview.4.22217.1 + 7.0.0-preview.4.22218.1 + 7.0.0-preview.4.22218.1 + 7.0.0-preview.4.22218.1 + 7.0.0-preview.4.22218.1 From 4acd960d7651b2a0ab4abdbc375b36fbe691adf6 Mon Sep 17 00:00:00 2001 From: Logan Bussell Date: Tue, 19 Apr 2022 11:47:29 -0700 Subject: [PATCH 14/77] [main] Build arcade and sourcelink in source-build tarball (#13657) * build arcade and sourcelink in source-build tarball * update arcade target framework override to reflect change in arcade package output Co-authored-by: Michael Simons --- src/SourceBuild/tarball/content/repos/Directory.Build.props | 2 +- src/SourceBuild/tarball/content/repos/arcade.proj | 2 +- src/SourceBuild/tarball/content/repos/known-good.proj | 4 ++-- src/SourceBuild/tarball/content/repos/runtime.common.props | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/SourceBuild/tarball/content/repos/Directory.Build.props b/src/SourceBuild/tarball/content/repos/Directory.Build.props index e61a6e689..ad4f0693a 100644 --- a/src/SourceBuild/tarball/content/repos/Directory.Build.props +++ b/src/SourceBuild/tarball/content/repos/Directory.Build.props @@ -150,7 +150,7 @@ - + diff --git a/src/SourceBuild/tarball/content/repos/arcade.proj b/src/SourceBuild/tarball/content/repos/arcade.proj index fbf8b3a48..ae90ac3c7 100644 --- a/src/SourceBuild/tarball/content/repos/arcade.proj +++ b/src/SourceBuild/tarball/content/repos/arcade.proj @@ -24,7 +24,7 @@ - + diff --git a/src/SourceBuild/tarball/content/repos/known-good.proj b/src/SourceBuild/tarball/content/repos/known-good.proj index 2ac8a7757..47b8dee22 100644 --- a/src/SourceBuild/tarball/content/repos/known-good.proj +++ b/src/SourceBuild/tarball/content/repos/known-good.proj @@ -27,8 +27,8 @@ - - + + diff --git a/src/SourceBuild/tarball/content/repos/runtime.common.props b/src/SourceBuild/tarball/content/repos/runtime.common.props index b1e9e6adb..19680fa07 100644 --- a/src/SourceBuild/tarball/content/repos/runtime.common.props +++ b/src/SourceBuild/tarball/content/repos/runtime.common.props @@ -31,7 +31,7 @@ - + From 9a56d4095d0a716c4846e8d475f268d87be0073b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 19 Apr 2022 20:07:42 +0000 Subject: [PATCH 15/77] Update dependencies from https://github.com/dotnet/sdk build 20220419.8 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.4.22219.8 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.4.22218.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ed3d5e4d2..c29c4dc0d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 7d080d485de22be74355942d09c9ab0444f1e78f + 2aa421c5ae467ff317043908eca97657b28c7d8a - + https://github.com/dotnet/sdk - 7d080d485de22be74355942d09c9ab0444f1e78f + 2aa421c5ae467ff317043908eca97657b28c7d8a diff --git a/eng/Versions.props b/eng/Versions.props index 79ccefe04..c9a20df51 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.4.22219.4 - 7.0.100-preview.4.22219.4 + 7.0.100-preview.4.22219.8 + 7.0.100-preview.4.22219.8 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 336d31637371d01153efc590abed7658590b4158 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 19 Apr 2022 21:14:14 +0000 Subject: [PATCH 16/77] Update dependencies from https://github.com/dotnet/sdk build 20220419.9 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.4.22219.9 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.4.22218.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c29c4dc0d..21755e571 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 2aa421c5ae467ff317043908eca97657b28c7d8a + 79f19ec42551f2b472d55c6075c26aa6dd40f4a0 - + https://github.com/dotnet/sdk - 2aa421c5ae467ff317043908eca97657b28c7d8a + 79f19ec42551f2b472d55c6075c26aa6dd40f4a0 diff --git a/eng/Versions.props b/eng/Versions.props index c9a20df51..592594771 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.4.22219.8 - 7.0.100-preview.4.22219.8 + 7.0.100-preview.4.22219.9 + 7.0.100-preview.4.22219.9 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 35803a779fec6734ee8da45cb6d162a93fccb4be Mon Sep 17 00:00:00 2001 From: Michael Simons Date: Tue, 19 Apr 2022 16:50:46 -0500 Subject: [PATCH 17/77] Update source-build projects to net7.0 (#13663) --- src/SourceBuild/Arcade/tools/TextOnlyPackages.csproj | 2 +- src/SourceBuild/tarball/content/build.proj | 2 +- .../content/scripts/bootstrap/buildBootstrapPreviouslySB.csproj | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/SourceBuild/Arcade/tools/TextOnlyPackages.csproj b/src/SourceBuild/Arcade/tools/TextOnlyPackages.csproj index 088f860e3..df0bd52fd 100644 --- a/src/SourceBuild/Arcade/tools/TextOnlyPackages.csproj +++ b/src/SourceBuild/Arcade/tools/TextOnlyPackages.csproj @@ -1,6 +1,6 @@ - net6.0 + net7.0 $(TargetPackagesPath) diff --git a/src/SourceBuild/tarball/content/build.proj b/src/SourceBuild/tarball/content/build.proj index 52c3341e0..056247233 100644 --- a/src/SourceBuild/tarball/content/build.proj +++ b/src/SourceBuild/tarball/content/build.proj @@ -119,7 +119,7 @@ - $(SmokeTestsDir)bin/$(Configuration)/net6.0/ + $(SmokeTestsDir)bin/$(Configuration)/net7.0/ $(SmokeTestsArtifactsDir)packages/ diff --git a/src/SourceBuild/tarball/content/scripts/bootstrap/buildBootstrapPreviouslySB.csproj b/src/SourceBuild/tarball/content/scripts/bootstrap/buildBootstrapPreviouslySB.csproj index 14921a48f..9d74856ca 100644 --- a/src/SourceBuild/tarball/content/scripts/bootstrap/buildBootstrapPreviouslySB.csproj +++ b/src/SourceBuild/tarball/content/scripts/bootstrap/buildBootstrapPreviouslySB.csproj @@ -4,7 +4,7 @@ - net6.0 + net7.0 $(MSBuildProjectDirectory)/artifacts/ $(MSBuildProjectDirectory)/artifacts/restoredPkgs/ $(MSBuildProjectDirectory)/artifacts/unpacked/ From 038c811c9703283dab2e8ff572a0dca61a5c1a28 Mon Sep 17 00:00:00 2001 From: Michael Simons Date: Tue, 19 Apr 2022 17:19:00 -0500 Subject: [PATCH 18/77] Enable all tier 1 repos in source-build (#13658) --- eng/Versions.props | 2 +- .../tarball/content/repos/aspnetcore.proj | 2 +- .../tarball/content/repos/format.proj | 2 +- .../tarball/content/repos/fsharp.proj | 2 +- .../tarball/content/repos/installer.proj | 2 +- .../tarball/content/repos/known-good.proj | 16 ++++++++-------- .../tarball/content/repos/nuget-client.proj | 2 +- .../tarball/content/repos/roslyn-analyzers.proj | 3 +-- .../tarball/content/repos/roslyn.proj | 2 +- .../tarball/content/repos/runtime-portable.proj | 2 +- .../tarball/content/repos/runtime.proj | 2 +- src/SourceBuild/tarball/content/repos/sdk.proj | 2 +- ...ce-build.proj => source-build-externals.proj} | 0 .../tarball/content/repos/templating.proj | 2 +- .../tarball/content/repos/vstest.proj | 2 +- 15 files changed, 21 insertions(+), 22 deletions(-) rename src/SourceBuild/tarball/content/repos/{source-build.proj => source-build-externals.proj} (100%) diff --git a/eng/Versions.props b/eng/Versions.props index 02f899e50..6046c37c8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -189,7 +189,7 @@ or minor release, prebuilts may be needed. When the release is mature, prebuilts are not necessary, and this property is removed from the file. --> - 6.0.103 + 6.0.104 diff --git a/src/SourceBuild/tarball/content/repos/aspnetcore.proj b/src/SourceBuild/tarball/content/repos/aspnetcore.proj index 9eb1dedda..4eed64123 100644 --- a/src/SourceBuild/tarball/content/repos/aspnetcore.proj +++ b/src/SourceBuild/tarball/content/repos/aspnetcore.proj @@ -37,7 +37,7 @@ - + diff --git a/src/SourceBuild/tarball/content/repos/format.proj b/src/SourceBuild/tarball/content/repos/format.proj index 21734d18d..9b57876c2 100644 --- a/src/SourceBuild/tarball/content/repos/format.proj +++ b/src/SourceBuild/tarball/content/repos/format.proj @@ -12,7 +12,7 @@ - + diff --git a/src/SourceBuild/tarball/content/repos/fsharp.proj b/src/SourceBuild/tarball/content/repos/fsharp.proj index a03a69fc5..a07f8c36b 100644 --- a/src/SourceBuild/tarball/content/repos/fsharp.proj +++ b/src/SourceBuild/tarball/content/repos/fsharp.proj @@ -21,7 +21,7 @@ - + diff --git a/src/SourceBuild/tarball/content/repos/installer.proj b/src/SourceBuild/tarball/content/repos/installer.proj index 14c057b10..0f4d3744c 100644 --- a/src/SourceBuild/tarball/content/repos/installer.proj +++ b/src/SourceBuild/tarball/content/repos/installer.proj @@ -57,7 +57,7 @@ - + diff --git a/src/SourceBuild/tarball/content/repos/known-good.proj b/src/SourceBuild/tarball/content/repos/known-good.proj index 47b8dee22..770b14a31 100644 --- a/src/SourceBuild/tarball/content/repos/known-good.proj +++ b/src/SourceBuild/tarball/content/repos/known-good.proj @@ -31,14 +31,14 @@ - - - - - - - - + + + + + + + + diff --git a/src/SourceBuild/tarball/content/repos/nuget-client.proj b/src/SourceBuild/tarball/content/repos/nuget-client.proj index 0bb80e91a..eccc1a738 100644 --- a/src/SourceBuild/tarball/content/repos/nuget-client.proj +++ b/src/SourceBuild/tarball/content/repos/nuget-client.proj @@ -11,7 +11,7 @@ - + diff --git a/src/SourceBuild/tarball/content/repos/roslyn-analyzers.proj b/src/SourceBuild/tarball/content/repos/roslyn-analyzers.proj index 3d7882a5b..e352f58c1 100644 --- a/src/SourceBuild/tarball/content/repos/roslyn-analyzers.proj +++ b/src/SourceBuild/tarball/content/repos/roslyn-analyzers.proj @@ -17,8 +17,7 @@ - + diff --git a/src/SourceBuild/tarball/content/repos/roslyn.proj b/src/SourceBuild/tarball/content/repos/roslyn.proj index 0f43286ce..157e817a6 100644 --- a/src/SourceBuild/tarball/content/repos/roslyn.proj +++ b/src/SourceBuild/tarball/content/repos/roslyn.proj @@ -39,7 +39,7 @@ - + diff --git a/src/SourceBuild/tarball/content/repos/runtime-portable.proj b/src/SourceBuild/tarball/content/repos/runtime-portable.proj index f90a7b7d6..09b4625e9 100644 --- a/src/SourceBuild/tarball/content/repos/runtime-portable.proj +++ b/src/SourceBuild/tarball/content/repos/runtime-portable.proj @@ -9,7 +9,7 @@ - + diff --git a/src/SourceBuild/tarball/content/repos/runtime.proj b/src/SourceBuild/tarball/content/repos/runtime.proj index f3ed143f8..59ea1d6fc 100644 --- a/src/SourceBuild/tarball/content/repos/runtime.proj +++ b/src/SourceBuild/tarball/content/repos/runtime.proj @@ -18,7 +18,7 @@ - + diff --git a/src/SourceBuild/tarball/content/repos/sdk.proj b/src/SourceBuild/tarball/content/repos/sdk.proj index 9a26cd695..e50b7dbc5 100644 --- a/src/SourceBuild/tarball/content/repos/sdk.proj +++ b/src/SourceBuild/tarball/content/repos/sdk.proj @@ -32,7 +32,7 @@ - + diff --git a/src/SourceBuild/tarball/content/repos/source-build.proj b/src/SourceBuild/tarball/content/repos/source-build-externals.proj similarity index 100% rename from src/SourceBuild/tarball/content/repos/source-build.proj rename to src/SourceBuild/tarball/content/repos/source-build-externals.proj diff --git a/src/SourceBuild/tarball/content/repos/templating.proj b/src/SourceBuild/tarball/content/repos/templating.proj index 186bd3542..ed0971d42 100644 --- a/src/SourceBuild/tarball/content/repos/templating.proj +++ b/src/SourceBuild/tarball/content/repos/templating.proj @@ -15,7 +15,7 @@ - + diff --git a/src/SourceBuild/tarball/content/repos/vstest.proj b/src/SourceBuild/tarball/content/repos/vstest.proj index fc7f0984b..67eac4ddd 100644 --- a/src/SourceBuild/tarball/content/repos/vstest.proj +++ b/src/SourceBuild/tarball/content/repos/vstest.proj @@ -14,7 +14,7 @@ - + From 2a412d3454ec31c7abd64ba8dd2480853d7e7c3f Mon Sep 17 00:00:00 2001 From: Michael Simons Date: Tue, 19 Apr 2022 17:23:25 -0500 Subject: [PATCH 19/77] Remove CheckSourceBuiltNupkgConflictUsages target (#13668) --- .../content/repos/Directory.Build.targets | 38 ----- .../GetSourceBuiltNupkgCacheConflicts.cs | 153 ------------------ 2 files changed, 191 deletions(-) delete mode 100644 src/SourceBuild/tarball/content/tools-local/tasks/Microsoft.DotNet.SourceBuild.Tasks.XPlat/GetSourceBuiltNupkgCacheConflicts.cs diff --git a/src/SourceBuild/tarball/content/repos/Directory.Build.targets b/src/SourceBuild/tarball/content/repos/Directory.Build.targets index e49bb87ef..aadaf52c8 100644 --- a/src/SourceBuild/tarball/content/repos/Directory.Build.targets +++ b/src/SourceBuild/tarball/content/repos/Directory.Build.targets @@ -327,47 +327,9 @@ - - <_KnownOriginPackagePaths Include="$(PrebuiltSourceBuiltPackagesPath)*.nupkg" /> - <_KnownOriginPackagePaths Include="$(PrebuiltPackagesPath)*.nupkg" /> - <_KnownOriginPackagePaths Include="$(ReferencePackagesDir)*.nupkg" /> - - - - - - - - - <_ReportDir>$(ConflictingPackageReportDir)before-$(RepositoryName)/ - <_ReportDataFile>$(_ReportDir)usage.xml - <_ProjectAssetsJsonArchiveFile>$(_ReportDir)all-project-assets-json-files.zip - - - - - - - - - - - - - /// For each source-built nupkg info given, ensure that if the package cache contains a package - /// with the same id and version, the cached nupkg is the same as the source-built one. - /// - /// If the package cache contains a package with the same package id and version as a - /// source-built one, nuget restore short-circuits and doesn't look for the source-built one. - /// This usually results in prebuilt packages being used, which can either break the build or - /// end up in the outputs. - /// - public class GetSourceBuiltNupkgCacheConflicts : Task - { - /// - /// Items containing package id and version of each source-built package. - /// ReadNuGetPackageInfos is recommended to generate these. - /// - /// %(Identity): Path to the original nupkg. - /// %(PackageId): Identity of the package. - /// %(PackageVersion): Version of the package. - /// - [Required] - public ITaskItem[] SourceBuiltPackageInfos { get; set; } - - /// - /// Package cache dir containing nupkgs to compare. Path is expected to be like: - /// - /// {PackageCacheDir}/{lowercase id}/{version}/{lowercase id}.{version}.nupkg - /// - [Required] - public string PackageCacheDir { get; set; } - - /// - /// Paths to packages to compare against when conflicts are detected. Knowing where the - /// package in the cache came from can help diagnose a conflict. For example, is it from - /// prebuilt/source-built? Or does the build not have the nupkg anywhere else, and - /// therefore it most likely came from the internet? - /// - public string[] KnownOriginPackagePaths { get; set; } - - [Output] - public ITaskItem[] ConflictingPackageInfos { get; set; } - - public override bool Execute() - { - DateTime startTime = DateTime.Now; - - var knownNupkgs = new Lazy>(() => - { - Log.LogMessage( - MessageImportance.Low, - $"Reading all {nameof(KnownOriginPackagePaths)} package identities to search " + - "for conflicting package origin..."); - - return KnownOriginPackagePaths.NullAsEmpty().ToLookup( - ReadNuGetPackageInfos.ReadIdentity, - path => path); - }); - - ConflictingPackageInfos = SourceBuiltPackageInfos - .Where(item => - { - string sourceBuiltPath = item.ItemSpec; - string id = item.GetMetadata("PackageId"); - string version = item.GetMetadata("PackageVersion"); - - string packageCachePath = Path.Combine( - PackageCacheDir, - id.ToLowerInvariant(), - version, - $"{id.ToLowerInvariant()}.{version}.nupkg"); - - if (!File.Exists(packageCachePath)) - { - Log.LogMessage( - MessageImportance.Low, - $"OK: Package not found in package cache: {id} {version}"); - return false; - } - - Log.LogMessage( - MessageImportance.Low, - $"Package id/version found in package cache, verifying: {id} {version}"); - - byte[] packageCacheBytes = File.ReadAllBytes(packageCachePath); - - if (packageCacheBytes.SequenceEqual(File.ReadAllBytes(sourceBuiltPath))) - { - Log.LogMessage( - MessageImportance.Low, - $"OK: Package in cache is identical to source-built: {id} {version}"); - return false; - } - - Log.LogMessage( - MessageImportance.Low, - "BAD: Source-built nupkg is not byte-for-byte identical " + - $"to nupkg in cache: {id} {version}"); - - var ident = new PackageIdentity(id, NuGetVersion.Parse(version)); - - string message = null; - - foreach (string knownNupkg in knownNupkgs.Value[ident]) - { - if (packageCacheBytes.SequenceEqual(File.ReadAllBytes(knownNupkg))) - { - Log.LogMessage( - MessageImportance.Low, - $"Found identity match with identical contents: {knownNupkg}"); - - message = (message ?? "Nupkg found at") + $" '{knownNupkg}'"; - } - else - { - Log.LogMessage( - MessageImportance.Low, - $"Package identity match, but contents differ: {knownNupkg}"); - } - } - - item.SetMetadata( - "WarningMessage", - message ?? - "Origin nupkg not found in build directory. It may have been " + - "downloaded by NuGet restore."); - - return true; - }) - .ToArray(); - - // Tell the user about this task, in case it takes a while. - Log.LogMessage( - MessageImportance.High, - "Checked cache for conflicts with source-built nupkgs. " + - $"Took {DateTime.Now - startTime}"); - - return !Log.HasLoggedErrors; - } - } -} From a007c4416cf7eb46fe9dbfdb95a45f242e6f4a5f Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Tue, 19 Apr 2022 17:00:59 -0700 Subject: [PATCH 20/77] Update Branding --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 6046c37c8..073ba328b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -11,7 +11,7 @@ 00 $(VersionMajor).$(VersionMinor).$(VersionSDKMinor)$(VersionFeature) preview - 4 + 5 $(VersionMajor).$(VersionMinor) $(MajorMinorVersion).$(VersionSDKMinor) From 9e0e2a6581ae346d9b0b7d676d3b535e2662a144 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 20 Apr 2022 03:10:02 +0000 Subject: [PATCH 21/77] Update dependencies from https://github.com/dotnet/sdk build 20220419.20 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.4.22219.20 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.4.22218.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 21755e571..3eda18a08 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -52,30 +52,30 @@ https://github.com/dotnet/runtime a39ddca87f9d8e99d74ef44f280761bde578aca2 - + https://github.com/dotnet/aspnetcore - 315febea92949d03545581f53fbbb8cf56806a75 + 4e8fc8055d99a27eae2455052cbd06e618ba9633 - + https://github.com/dotnet/aspnetcore - 315febea92949d03545581f53fbbb8cf56806a75 + 4e8fc8055d99a27eae2455052cbd06e618ba9633 - + https://github.com/dotnet/aspnetcore - 315febea92949d03545581f53fbbb8cf56806a75 + 4e8fc8055d99a27eae2455052cbd06e618ba9633 - + https://github.com/dotnet/aspnetcore - 315febea92949d03545581f53fbbb8cf56806a75 + 4e8fc8055d99a27eae2455052cbd06e618ba9633 - + https://github.com/dotnet/aspnetcore - 315febea92949d03545581f53fbbb8cf56806a75 + 4e8fc8055d99a27eae2455052cbd06e618ba9633 - + https://github.com/dotnet/aspnetcore - 315febea92949d03545581f53fbbb8cf56806a75 + 4e8fc8055d99a27eae2455052cbd06e618ba9633 https://github.com/dotnet/test-templates @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 79f19ec42551f2b472d55c6075c26aa6dd40f4a0 + ceb03fc7cf686ffea7942e8f6b5f7aa03d8723e7 - + https://github.com/dotnet/sdk - 79f19ec42551f2b472d55c6075c26aa6dd40f4a0 + ceb03fc7cf686ffea7942e8f6b5f7aa03d8723e7 diff --git a/eng/Versions.props b/eng/Versions.props index 592594771..ed2c1a9ac 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,20 +52,20 @@ - 7.0.0-preview.4.22218.14 - 7.0.0-preview.4.22218.14 - 7.0.0-preview.4.22218.14 - 7.0.0-preview.4.22218.14 - 7.0.0-preview.4.22218.14 - 7.0.0-preview.4.22218.14 + 7.0.0-preview.4.22219.9 + 7.0.0-preview.4.22219.9 + 7.0.0-preview.4.22219.9 + 7.0.0-preview.4.22219.9 + 7.0.0-preview.4.22219.9 + 7.0.0-preview.4.22219.9 0.2.0 - 7.0.100-preview.4.22219.9 - 7.0.100-preview.4.22219.9 + 7.0.100-preview.4.22219.20 + 7.0.100-preview.4.22219.20 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 7bf00be671034ca478dccac8def64856f81db2bb Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 20 Apr 2022 04:43:35 +0000 Subject: [PATCH 22/77] Update dependencies from https://github.com/dotnet/sdk build 20220419.21 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.4.22219.21 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.4.22218.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3eda18a08..c8da52f3c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - ceb03fc7cf686ffea7942e8f6b5f7aa03d8723e7 + 5b7e369272806c3b9f9f8aa6d45eb9fe39a1a8e8 - + https://github.com/dotnet/sdk - ceb03fc7cf686ffea7942e8f6b5f7aa03d8723e7 + 5b7e369272806c3b9f9f8aa6d45eb9fe39a1a8e8 diff --git a/eng/Versions.props b/eng/Versions.props index ed2c1a9ac..229f3d88d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.4.22219.20 - 7.0.100-preview.4.22219.20 + 7.0.100-preview.4.22219.21 + 7.0.100-preview.4.22219.21 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From ba15bd26cc96829a6d6479de4a0ecc8dbcd2c418 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 20 Apr 2022 05:57:28 +0000 Subject: [PATCH 23/77] Update dependencies from https://github.com/dotnet/sdk build 20220419.22 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.4.22219.22 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.4.22218.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c8da52f3c..068f6e4c6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 5b7e369272806c3b9f9f8aa6d45eb9fe39a1a8e8 + dafd892f5d4b96811bda557f4a3ba42d867b344b - + https://github.com/dotnet/sdk - 5b7e369272806c3b9f9f8aa6d45eb9fe39a1a8e8 + dafd892f5d4b96811bda557f4a3ba42d867b344b diff --git a/eng/Versions.props b/eng/Versions.props index 229f3d88d..0bded171f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.4.22219.21 - 7.0.100-preview.4.22219.21 + 7.0.100-preview.4.22219.22 + 7.0.100-preview.4.22219.22 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From d2ddc9f51e4fdd1764f684ad50f22e061ef50f36 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 20 Apr 2022 07:31:04 +0000 Subject: [PATCH 24/77] Update dependencies from https://github.com/dotnet/sdk build 20220419.26 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.4.22219.26 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.4.22218.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 60 ++++++++++++++++++++--------------------- eng/Versions.props | 30 ++++++++++----------- 2 files changed, 45 insertions(+), 45 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 068f6e4c6..c6e3127e3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -17,30 +17,30 @@ https://github.com/dotnet/windowsdesktop 757d9c8200da8e111f421f3ab4073d9dadb397d3 - + https://github.com/dotnet/runtime - a39ddca87f9d8e99d74ef44f280761bde578aca2 + accec1c4d4bc0a923b7cfa189d9cf65a943054dc - + https://github.com/dotnet/runtime - a39ddca87f9d8e99d74ef44f280761bde578aca2 + accec1c4d4bc0a923b7cfa189d9cf65a943054dc - + https://github.com/dotnet/runtime - a39ddca87f9d8e99d74ef44f280761bde578aca2 + accec1c4d4bc0a923b7cfa189d9cf65a943054dc - + https://github.com/dotnet/runtime - a39ddca87f9d8e99d74ef44f280761bde578aca2 + accec1c4d4bc0a923b7cfa189d9cf65a943054dc - + https://github.com/dotnet/runtime - a39ddca87f9d8e99d74ef44f280761bde578aca2 + accec1c4d4bc0a923b7cfa189d9cf65a943054dc - + https://github.com/dotnet/runtime - a39ddca87f9d8e99d74ef44f280761bde578aca2 + accec1c4d4bc0a923b7cfa189d9cf65a943054dc @@ -48,34 +48,34 @@ https://github.com/dotnet/core-setup 7d57652f33493fa022125b7f63aad0d70c52d810 - + https://github.com/dotnet/runtime - a39ddca87f9d8e99d74ef44f280761bde578aca2 + accec1c4d4bc0a923b7cfa189d9cf65a943054dc - + https://github.com/dotnet/aspnetcore - 4e8fc8055d99a27eae2455052cbd06e618ba9633 + 0ee742c53f2669fd7233df6da89db5e8ab944585 - + https://github.com/dotnet/aspnetcore - 4e8fc8055d99a27eae2455052cbd06e618ba9633 + 0ee742c53f2669fd7233df6da89db5e8ab944585 - + https://github.com/dotnet/aspnetcore - 4e8fc8055d99a27eae2455052cbd06e618ba9633 + 0ee742c53f2669fd7233df6da89db5e8ab944585 - + https://github.com/dotnet/aspnetcore - 4e8fc8055d99a27eae2455052cbd06e618ba9633 + 0ee742c53f2669fd7233df6da89db5e8ab944585 - + https://github.com/dotnet/aspnetcore - 4e8fc8055d99a27eae2455052cbd06e618ba9633 + 0ee742c53f2669fd7233df6da89db5e8ab944585 - + https://github.com/dotnet/aspnetcore - 4e8fc8055d99a27eae2455052cbd06e618ba9633 + 0ee742c53f2669fd7233df6da89db5e8ab944585 https://github.com/dotnet/test-templates @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - dafd892f5d4b96811bda557f4a3ba42d867b344b + 39b459082f4eca6ddbb41646a9a39a82fa93de65 - + https://github.com/dotnet/sdk - dafd892f5d4b96811bda557f4a3ba42d867b344b + 39b459082f4eca6ddbb41646a9a39a82fa93de65 diff --git a/eng/Versions.props b/eng/Versions.props index 0bded171f..7fd3d7cc9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,36 +52,36 @@ - 7.0.0-preview.4.22219.9 - 7.0.0-preview.4.22219.9 - 7.0.0-preview.4.22219.9 - 7.0.0-preview.4.22219.9 - 7.0.0-preview.4.22219.9 - 7.0.0-preview.4.22219.9 + 7.0.0-preview.5.22219.13 + 7.0.0-preview.5.22219.13 + 7.0.0-preview.5.22219.13 + 7.0.0-preview.5.22219.13 + 7.0.0-preview.5.22219.13 + 7.0.0-preview.5.22219.13 0.2.0 - 7.0.100-preview.4.22219.22 - 7.0.100-preview.4.22219.22 + 7.0.100-preview.4.22219.26 + 7.0.100-preview.4.22219.26 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) - 7.0.0-preview.4.22216.4 + 7.0.0-preview.4.22219.1 - 7.0.0-preview.4.22216.4 - 7.0.0-preview.4.22216.4 - 7.0.0-preview.4.22216.4 - 7.0.0-preview.4.22216.4 - 7.0.0-preview.4.22216.4 - 7.0.0-preview.4.22216.4 + 7.0.0-preview.4.22219.1 + 7.0.0-preview.4.22219.1 + 7.0.0-preview.4.22219.1 + 7.0.0-preview.4.22219.1 + 7.0.0-preview.4.22219.1 + 7.0.0-preview.4.22219.1 2.1.0 From 8051befbb125b4fc954e85455bd6deb7a2cb11b0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 20 Apr 2022 08:36:47 +0000 Subject: [PATCH 25/77] Update dependencies from https://github.com/dotnet/sdk build 20220420.1 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.4.22220.1 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.4.22218.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c6e3127e3..b55175ce9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 39b459082f4eca6ddbb41646a9a39a82fa93de65 + 1f8c237ce329d141a3e68ee57996114923f69a3f - + https://github.com/dotnet/sdk - 39b459082f4eca6ddbb41646a9a39a82fa93de65 + 1f8c237ce329d141a3e68ee57996114923f69a3f diff --git a/eng/Versions.props b/eng/Versions.props index 7fd3d7cc9..3c47aed1b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.4.22219.26 - 7.0.100-preview.4.22219.26 + 7.0.100-preview.4.22220.1 + 7.0.100-preview.4.22220.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 84bafafd0b0249d0bae6cacc60cc2aa97d434f5a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 20 Apr 2022 09:33:49 +0000 Subject: [PATCH 26/77] Update dependencies from https://github.com/dotnet/sdk build 20220420.4 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.4.22220.4 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.4.22218.3 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b55175ce9..7ffabad04 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,21 +1,21 @@ - + https://github.com/dotnet/windowsdesktop - 757d9c8200da8e111f421f3ab4073d9dadb397d3 + d339fb2312e4769d87866dcf7ade88c7fab013fb - + https://github.com/dotnet/windowsdesktop - 757d9c8200da8e111f421f3ab4073d9dadb397d3 + d339fb2312e4769d87866dcf7ade88c7fab013fb - + https://github.com/dotnet/windowsdesktop - 757d9c8200da8e111f421f3ab4073d9dadb397d3 + d339fb2312e4769d87866dcf7ade88c7fab013fb - + https://github.com/dotnet/windowsdesktop - 757d9c8200da8e111f421f3ab4073d9dadb397d3 + d339fb2312e4769d87866dcf7ade88c7fab013fb https://github.com/dotnet/runtime @@ -103,23 +103,23 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 1f8c237ce329d141a3e68ee57996114923f69a3f + 2b641a3973bce393d52cbfc9b90acabd5f0f0a7c - + https://github.com/dotnet/sdk - 1f8c237ce329d141a3e68ee57996114923f69a3f + 2b641a3973bce393d52cbfc9b90acabd5f0f0a7c - + https://github.com/dotnet/winforms - 93c70498ef90a33ff64c66ad00ba067a12ce82fc + 04082b99477b1636bb5992b6c2aac6fc916c712a - + https://github.com/dotnet/wpf - 39f8a853a0e4f2fc5d46e1c3e3dad07c58067925 + 5625fe7f5252713e0e29f08c5ca1a85ee088a74e https://github.com/dotnet/fsharp diff --git a/eng/Versions.props b/eng/Versions.props index 3c47aed1b..ecaa8a6d3 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -30,11 +30,11 @@ - 7.0.0-preview.4.22217.2 + 7.0.0-preview.4.22218.2 - 7.0.0-preview.4.22217.3 + 7.0.0-preview.4.22218.3 @@ -64,8 +64,8 @@ - 7.0.100-preview.4.22220.1 - 7.0.100-preview.4.22220.1 + 7.0.100-preview.4.22220.4 + 7.0.100-preview.4.22220.4 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -86,10 +86,10 @@ - 7.0.0-preview.4.22218.1 - 7.0.0-preview.4.22218.1 - 7.0.0-preview.4.22218.1 - 7.0.0-preview.4.22218.1 + 7.0.0-preview.4.22218.3 + 7.0.0-preview.4.22218.3 + 7.0.0-preview.4.22218.3 + 7.0.0-preview.4.22218.3 From 066b03969b22a894dd152e6b0e917f311fd337f2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 20 Apr 2022 10:36:49 +0000 Subject: [PATCH 27/77] Update dependencies from https://github.com/dotnet/sdk build 20220420.5 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.4.22220.5 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.4.22218.3 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7ffabad04..293b17c46 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 2b641a3973bce393d52cbfc9b90acabd5f0f0a7c + 6df6f0e2f29a488185f419092b1391090f63915d - + https://github.com/dotnet/sdk - 2b641a3973bce393d52cbfc9b90acabd5f0f0a7c + 6df6f0e2f29a488185f419092b1391090f63915d @@ -135,9 +135,9 @@ 5eba36183bb2596d7b9f89291dc8e3e9fb4c20a6 - + https://github.com/dotnet/linker - 5c69665bbb929b8decacb266dc2edeb3e32b9858 + 36b61348be2b93f2add8886174f19c0ed4aacd36 linker diff --git a/eng/Versions.props b/eng/Versions.props index ecaa8a6d3..d2abe5e5f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.4.22220.4 - 7.0.100-preview.4.22220.4 + 7.0.100-preview.4.22220.5 + 7.0.100-preview.4.22220.5 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From dabde0b3c98e1d2b341a584f3dcce890db16b319 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 20 Apr 2022 11:38:01 +0000 Subject: [PATCH 28/77] Update dependencies from https://github.com/dotnet/sdk build 20220420.7 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.4.22220.7 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.4.22218.3 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 293b17c46..66de2a388 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -52,30 +52,30 @@ https://github.com/dotnet/runtime accec1c4d4bc0a923b7cfa189d9cf65a943054dc - + https://github.com/dotnet/aspnetcore - 0ee742c53f2669fd7233df6da89db5e8ab944585 + 4cdf42e78b7f56fc28ff4090a84674334e3694c2 - + https://github.com/dotnet/aspnetcore - 0ee742c53f2669fd7233df6da89db5e8ab944585 + 4cdf42e78b7f56fc28ff4090a84674334e3694c2 - + https://github.com/dotnet/aspnetcore - 0ee742c53f2669fd7233df6da89db5e8ab944585 + 4cdf42e78b7f56fc28ff4090a84674334e3694c2 - + https://github.com/dotnet/aspnetcore - 0ee742c53f2669fd7233df6da89db5e8ab944585 + 4cdf42e78b7f56fc28ff4090a84674334e3694c2 - + https://github.com/dotnet/aspnetcore - 0ee742c53f2669fd7233df6da89db5e8ab944585 + 4cdf42e78b7f56fc28ff4090a84674334e3694c2 - + https://github.com/dotnet/aspnetcore - 0ee742c53f2669fd7233df6da89db5e8ab944585 + 4cdf42e78b7f56fc28ff4090a84674334e3694c2 https://github.com/dotnet/test-templates @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 6df6f0e2f29a488185f419092b1391090f63915d + 9d13b3dafa5ef9db980fb41a7d3136a86371249d - + https://github.com/dotnet/sdk - 6df6f0e2f29a488185f419092b1391090f63915d + 9d13b3dafa5ef9db980fb41a7d3136a86371249d diff --git a/eng/Versions.props b/eng/Versions.props index d2abe5e5f..d37d7698e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,20 +52,20 @@ - 7.0.0-preview.5.22219.13 - 7.0.0-preview.5.22219.13 - 7.0.0-preview.5.22219.13 - 7.0.0-preview.5.22219.13 - 7.0.0-preview.5.22219.13 - 7.0.0-preview.5.22219.13 + 7.0.0-preview.5.22219.14 + 7.0.0-preview.5.22219.14 + 7.0.0-preview.5.22219.14 + 7.0.0-preview.5.22219.14 + 7.0.0-preview.5.22219.14 + 7.0.0-preview.5.22219.14 0.2.0 - 7.0.100-preview.4.22220.5 - 7.0.100-preview.4.22220.5 + 7.0.100-preview.4.22220.7 + 7.0.100-preview.4.22220.7 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From f312ae0fe8ba92c3154639c83d1d7e6c28ffccd4 Mon Sep 17 00:00:00 2001 From: Michael Simons Date: Wed, 20 Apr 2022 11:59:01 -0500 Subject: [PATCH 29/77] Enable linker and package-source-build in source-build (#13669) --- src/SourceBuild/tarball/content/repos/known-good.proj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SourceBuild/tarball/content/repos/known-good.proj b/src/SourceBuild/tarball/content/repos/known-good.proj index 770b14a31..050d5cb91 100644 --- a/src/SourceBuild/tarball/content/repos/known-good.proj +++ b/src/SourceBuild/tarball/content/repos/known-good.proj @@ -41,7 +41,7 @@ - + @@ -65,7 +65,7 @@ - + From 4d2705455859fe3fc9184c9ff4e56a8dcfd399b2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 20 Apr 2022 17:48:20 +0000 Subject: [PATCH 30/77] Update dependencies from https://github.com/dotnet/sdk build 20220420.13 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.4.22220.13 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.4.22218.3 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 64 ++++++++++++++++++++--------------------- eng/Versions.props | 32 ++++++++++----------- 2 files changed, 48 insertions(+), 48 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 66de2a388..884353df6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -17,30 +17,30 @@ https://github.com/dotnet/windowsdesktop d339fb2312e4769d87866dcf7ade88c7fab013fb - + https://github.com/dotnet/runtime - accec1c4d4bc0a923b7cfa189d9cf65a943054dc + e3442b43424f040faca7611d4bcf53a357397df8 - + https://github.com/dotnet/runtime - accec1c4d4bc0a923b7cfa189d9cf65a943054dc + e3442b43424f040faca7611d4bcf53a357397df8 - + https://github.com/dotnet/runtime - accec1c4d4bc0a923b7cfa189d9cf65a943054dc + e3442b43424f040faca7611d4bcf53a357397df8 - + https://github.com/dotnet/runtime - accec1c4d4bc0a923b7cfa189d9cf65a943054dc + e3442b43424f040faca7611d4bcf53a357397df8 - + https://github.com/dotnet/runtime - accec1c4d4bc0a923b7cfa189d9cf65a943054dc + e3442b43424f040faca7611d4bcf53a357397df8 - + https://github.com/dotnet/runtime - accec1c4d4bc0a923b7cfa189d9cf65a943054dc + e3442b43424f040faca7611d4bcf53a357397df8 @@ -48,34 +48,34 @@ https://github.com/dotnet/core-setup 7d57652f33493fa022125b7f63aad0d70c52d810 - + https://github.com/dotnet/runtime - accec1c4d4bc0a923b7cfa189d9cf65a943054dc + e3442b43424f040faca7611d4bcf53a357397df8 - + https://github.com/dotnet/aspnetcore - 4cdf42e78b7f56fc28ff4090a84674334e3694c2 + 5e6f639b8cccccb89fc9f7e89f44c42b8ba12391 - + https://github.com/dotnet/aspnetcore - 4cdf42e78b7f56fc28ff4090a84674334e3694c2 + 5e6f639b8cccccb89fc9f7e89f44c42b8ba12391 - + https://github.com/dotnet/aspnetcore - 4cdf42e78b7f56fc28ff4090a84674334e3694c2 + 5e6f639b8cccccb89fc9f7e89f44c42b8ba12391 - + https://github.com/dotnet/aspnetcore - 4cdf42e78b7f56fc28ff4090a84674334e3694c2 + 5e6f639b8cccccb89fc9f7e89f44c42b8ba12391 - + https://github.com/dotnet/aspnetcore - 4cdf42e78b7f56fc28ff4090a84674334e3694c2 + 5e6f639b8cccccb89fc9f7e89f44c42b8ba12391 - + https://github.com/dotnet/aspnetcore - 4cdf42e78b7f56fc28ff4090a84674334e3694c2 + 5e6f639b8cccccb89fc9f7e89f44c42b8ba12391 https://github.com/dotnet/test-templates @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 9d13b3dafa5ef9db980fb41a7d3136a86371249d + 92a252084762ce3b03f92e5f415b098eba68179e - + https://github.com/dotnet/sdk - 9d13b3dafa5ef9db980fb41a7d3136a86371249d + 92a252084762ce3b03f92e5f415b098eba68179e @@ -130,9 +130,9 @@ 8854f5d1f3bd7e60d42565a18a2f8c06ae307474 - + https://github.com/microsoft/vstest - 5eba36183bb2596d7b9f89291dc8e3e9fb4c20a6 + 120e1008423fcc9d3175e309fbdfaf3967260029 diff --git a/eng/Versions.props b/eng/Versions.props index d37d7698e..d5b53fa37 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,36 +52,36 @@ - 7.0.0-preview.5.22219.14 - 7.0.0-preview.5.22219.14 - 7.0.0-preview.5.22219.14 - 7.0.0-preview.5.22219.14 - 7.0.0-preview.5.22219.14 - 7.0.0-preview.5.22219.14 + 7.0.0-preview.5.22220.1 + 7.0.0-preview.5.22220.1 + 7.0.0-preview.5.22220.1 + 7.0.0-preview.5.22220.1 + 7.0.0-preview.5.22220.1 + 7.0.0-preview.5.22220.1 0.2.0 - 7.0.100-preview.4.22220.7 - 7.0.100-preview.4.22220.7 + 7.0.100-preview.4.22220.13 + 7.0.100-preview.4.22220.13 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) - 7.0.0-preview.4.22219.1 + 7.0.0-preview.4.22219.9 - 7.0.0-preview.4.22219.1 - 7.0.0-preview.4.22219.1 - 7.0.0-preview.4.22219.1 - 7.0.0-preview.4.22219.1 - 7.0.0-preview.4.22219.1 - 7.0.0-preview.4.22219.1 + 7.0.0-preview.4.22219.9 + 7.0.0-preview.4.22219.9 + 7.0.0-preview.4.22219.9 + 7.0.0-preview.4.22219.9 + 7.0.0-preview.4.22219.9 + 7.0.0-preview.4.22219.9 2.1.0 @@ -167,7 +167,7 @@ 2.2.0-beta.19072.10 2.0.0 - 17.3.0-preview-20220414-05 + 17.3.0-preview-20220420-02 From 42906c052cc8867dcbeba2f4113e02771f7c5542 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 20 Apr 2022 18:54:35 +0000 Subject: [PATCH 31/77] Update dependencies from https://github.com/dotnet/sdk build 20220420.17 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22220.17 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.4.22218.3 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 884353df6..8addf858d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 92a252084762ce3b03f92e5f415b098eba68179e + 539df83ddfb5674c343abce7ab5823c0c161c4f3 - + https://github.com/dotnet/sdk - 92a252084762ce3b03f92e5f415b098eba68179e + 539df83ddfb5674c343abce7ab5823c0c161c4f3 diff --git a/eng/Versions.props b/eng/Versions.props index d5b53fa37..9644418e7 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.4.22220.13 - 7.0.100-preview.4.22220.13 + 7.0.100-preview.5.22220.17 + 7.0.100-preview.5.22220.17 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 1d4d276c1dd2355efc1b3d3827606b037bb243f7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 20 Apr 2022 20:06:01 +0000 Subject: [PATCH 32/77] Update dependencies from https://github.com/dotnet/sdk build 20220420.18 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22220.18 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22219.8 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 36 ++++++++++++++++++------------------ eng/Versions.props | 16 ++++++++-------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8addf858d..b841ab605 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,21 +1,21 @@ - + https://github.com/dotnet/windowsdesktop - d339fb2312e4769d87866dcf7ade88c7fab013fb + 1bb2225335f983c17ffe3468c160847e09f0dc4b - + https://github.com/dotnet/windowsdesktop - d339fb2312e4769d87866dcf7ade88c7fab013fb + 1bb2225335f983c17ffe3468c160847e09f0dc4b - + https://github.com/dotnet/windowsdesktop - d339fb2312e4769d87866dcf7ade88c7fab013fb + 1bb2225335f983c17ffe3468c160847e09f0dc4b - + https://github.com/dotnet/windowsdesktop - d339fb2312e4769d87866dcf7ade88c7fab013fb + 1bb2225335f983c17ffe3468c160847e09f0dc4b https://github.com/dotnet/runtime @@ -103,23 +103,23 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 539df83ddfb5674c343abce7ab5823c0c161c4f3 + 064759fa72de47727d57a5b35c68b7910b25e589 - + https://github.com/dotnet/sdk - 539df83ddfb5674c343abce7ab5823c0c161c4f3 + 064759fa72de47727d57a5b35c68b7910b25e589 - + https://github.com/dotnet/winforms - 04082b99477b1636bb5992b6c2aac6fc916c712a + 464f03d217a6c2287981010b399c1d4940b48edc - + https://github.com/dotnet/wpf - 5625fe7f5252713e0e29f08c5ca1a85ee088a74e + 99c95b07384677cd93ffaab798749d87c2ac13d1 https://github.com/dotnet/fsharp @@ -146,9 +146,9 @@ f2d278f9a5131b7944d6ac5fecf2ce5b0a98195f - + https://github.com/dotnet/msbuild - 44ad46fed8c5f7e5800e93f61f265b2efaa8ea5e + 75795a4d02c93e6c66be6e699d3e6cbaaa080f50 diff --git a/eng/Versions.props b/eng/Versions.props index 9644418e7..dcf5a2faf 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -30,11 +30,11 @@ - 7.0.0-preview.4.22218.2 + 7.0.0-preview.4.22219.3 - 7.0.0-preview.4.22218.3 + 7.0.0-preview.5.22219.4 @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22220.17 - 7.0.100-preview.5.22220.17 + 7.0.100-preview.5.22220.18 + 7.0.100-preview.5.22220.18 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -86,10 +86,10 @@ - 7.0.0-preview.4.22218.3 - 7.0.0-preview.4.22218.3 - 7.0.0-preview.4.22218.3 - 7.0.0-preview.4.22218.3 + 7.0.0-preview.5.22219.8 + 7.0.0-preview.5.22219.8 + 7.0.0-preview.5.22219.8 + 7.0.0-preview.5.22219.8 From 73d8fb56fa8baead443622815e0f5df844eda9a8 Mon Sep 17 00:00:00 2001 From: Michael Simons Date: Wed, 20 Apr 2022 15:40:57 -0500 Subject: [PATCH 33/77] Enable deployment-tools, msbuild, and vstest repos in source-build (#13677) --- src/SourceBuild/tarball/content/repos/deployment-tools.proj | 3 ++- src/SourceBuild/tarball/content/repos/known-good.proj | 6 +++--- src/SourceBuild/tarball/content/repos/msbuild.proj | 3 ++- src/SourceBuild/tarball/content/repos/vstest.proj | 3 ++- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/SourceBuild/tarball/content/repos/deployment-tools.proj b/src/SourceBuild/tarball/content/repos/deployment-tools.proj index 7d1bf5785..7793b74b8 100644 --- a/src/SourceBuild/tarball/content/repos/deployment-tools.proj +++ b/src/SourceBuild/tarball/content/repos/deployment-tools.proj @@ -10,7 +10,8 @@ - + + diff --git a/src/SourceBuild/tarball/content/repos/known-good.proj b/src/SourceBuild/tarball/content/repos/known-good.proj index 050d5cb91..e8547f439 100644 --- a/src/SourceBuild/tarball/content/repos/known-good.proj +++ b/src/SourceBuild/tarball/content/repos/known-good.proj @@ -42,7 +42,7 @@ - + @@ -52,14 +52,14 @@ - + - + diff --git a/src/SourceBuild/tarball/content/repos/msbuild.proj b/src/SourceBuild/tarball/content/repos/msbuild.proj index 4069d7d3d..d659a561c 100644 --- a/src/SourceBuild/tarball/content/repos/msbuild.proj +++ b/src/SourceBuild/tarball/content/repos/msbuild.proj @@ -30,7 +30,8 @@ - + + diff --git a/src/SourceBuild/tarball/content/repos/vstest.proj b/src/SourceBuild/tarball/content/repos/vstest.proj index 67eac4ddd..63c1609bf 100644 --- a/src/SourceBuild/tarball/content/repos/vstest.proj +++ b/src/SourceBuild/tarball/content/repos/vstest.proj @@ -13,7 +13,8 @@ - + + From ef05ba89b7c17ad3cc529b792dd0e1b29851a05d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 20 Apr 2022 21:16:19 +0000 Subject: [PATCH 34/77] Update dependencies from https://github.com/dotnet/sdk build 20220420.19 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22220.19 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22219.8 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b841ab605..0db42a8cf 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 064759fa72de47727d57a5b35c68b7910b25e589 + 1423cd28eb51cfea691fa256f7ac1cc2f5209aff - + https://github.com/dotnet/sdk - 064759fa72de47727d57a5b35c68b7910b25e589 + 1423cd28eb51cfea691fa256f7ac1cc2f5209aff @@ -121,11 +121,11 @@ https://github.com/dotnet/wpf 99c95b07384677cd93ffaab798749d87c2ac13d1 - + https://github.com/dotnet/fsharp 8854f5d1f3bd7e60d42565a18a2f8c06ae307474 - + https://github.com/dotnet/fsharp 8854f5d1f3bd7e60d42565a18a2f8c06ae307474 @@ -151,9 +151,9 @@ 75795a4d02c93e6c66be6e699d3e6cbaaa080f50 - + https://github.com/nuget/nuget.client - 6f54dbd49fcda01ca8d71eb4fa4eea6ef54379ab + b8a61266d9a6780cb7eb9c1942695cf813fdef0a diff --git a/eng/Versions.props b/eng/Versions.props index dcf5a2faf..0ca1b2ea8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22220.18 - 7.0.100-preview.5.22220.18 + 7.0.100-preview.5.22220.19 + 7.0.100-preview.5.22220.19 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 7b3a6097c037d2ecb977fa7e7b0ef72d5d16863d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 20 Apr 2022 22:32:28 +0000 Subject: [PATCH 35/77] Update dependencies from https://github.com/dotnet/sdk build 20220420.20 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22220.20 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22219.8 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0db42a8cf..a95157a6a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 1423cd28eb51cfea691fa256f7ac1cc2f5209aff + ed7d6971ff95ff7fb088d3992b3d013ad5c73f3f - + https://github.com/dotnet/sdk - 1423cd28eb51cfea691fa256f7ac1cc2f5209aff + ed7d6971ff95ff7fb088d3992b3d013ad5c73f3f @@ -141,9 +141,9 @@ linker - + https://github.com/dotnet/roslyn - f2d278f9a5131b7944d6ac5fecf2ce5b0a98195f + 1e40aa11ca0b522e201320f70d469de40f211b2c diff --git a/eng/Versions.props b/eng/Versions.props index 0ca1b2ea8..15ecb7a5b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22220.19 - 7.0.100-preview.5.22220.19 + 7.0.100-preview.5.22220.20 + 7.0.100-preview.5.22220.20 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 24e767786d5156932401e25079e6e0d7e0466cd6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 20 Apr 2022 23:31:18 +0000 Subject: [PATCH 36/77] Update dependencies from https://github.com/dotnet/sdk build 20220420.21 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22220.21 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22219.8 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a95157a6a..d88b0230e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - ed7d6971ff95ff7fb088d3992b3d013ad5c73f3f + dfe5f294514b55ea4f5a6e0a4a3cb0c53342966f - + https://github.com/dotnet/sdk - ed7d6971ff95ff7fb088d3992b3d013ad5c73f3f + dfe5f294514b55ea4f5a6e0a4a3cb0c53342966f diff --git a/eng/Versions.props b/eng/Versions.props index 15ecb7a5b..aa623821b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22220.20 - 7.0.100-preview.5.22220.20 + 7.0.100-preview.5.22220.21 + 7.0.100-preview.5.22220.21 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 2178e0ca52b409829d70552875cb1cd37f0784d6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 21 Apr 2022 00:40:06 +0000 Subject: [PATCH 37/77] Update dependencies from https://github.com/dotnet/sdk build 20220420.22 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22220.22 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22219.8 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d88b0230e..24cb26bae 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - dfe5f294514b55ea4f5a6e0a4a3cb0c53342966f + b37e30f1bdb12c6ecef9793b06d5636933842a66 - + https://github.com/dotnet/sdk - dfe5f294514b55ea4f5a6e0a4a3cb0c53342966f + b37e30f1bdb12c6ecef9793b06d5636933842a66 @@ -135,9 +135,9 @@ 120e1008423fcc9d3175e309fbdfaf3967260029 - + https://github.com/dotnet/linker - 36b61348be2b93f2add8886174f19c0ed4aacd36 + e768b2e47c4d5f371bb30974463126d3b1751b5b linker diff --git a/eng/Versions.props b/eng/Versions.props index aa623821b..74b78e4fb 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22220.21 - 7.0.100-preview.5.22220.21 + 7.0.100-preview.5.22220.22 + 7.0.100-preview.5.22220.22 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From f83e5c479cfb3496178544fffccea6fc7c0f5cce Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 21 Apr 2022 02:59:47 +0000 Subject: [PATCH 38/77] Update dependencies from https://github.com/dotnet/sdk build 20220420.23 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22220.23 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22219.8 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 24cb26bae..5adc9ae76 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - b37e30f1bdb12c6ecef9793b06d5636933842a66 + f4f81550cdd234436b46be9b57d3d2068994a44f - + https://github.com/dotnet/sdk - b37e30f1bdb12c6ecef9793b06d5636933842a66 + f4f81550cdd234436b46be9b57d3d2068994a44f @@ -135,9 +135,9 @@ 120e1008423fcc9d3175e309fbdfaf3967260029 - + https://github.com/dotnet/linker - e768b2e47c4d5f371bb30974463126d3b1751b5b + 6374217e191b8cef0c5a3d862f4291583eb959f4 linker diff --git a/eng/Versions.props b/eng/Versions.props index 74b78e4fb..be87a7cb3 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22220.22 - 7.0.100-preview.5.22220.22 + 7.0.100-preview.5.22220.23 + 7.0.100-preview.5.22220.23 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 15635d6016263aa9c59d3b44bd3192022dcc28f4 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 21 Apr 2022 05:10:56 +0000 Subject: [PATCH 39/77] Update dependencies from https://github.com/dotnet/sdk build 20220420.27 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22220.27 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22219.8 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5adc9ae76..6d610233c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -52,30 +52,30 @@ https://github.com/dotnet/runtime e3442b43424f040faca7611d4bcf53a357397df8 - + https://github.com/dotnet/aspnetcore - 5e6f639b8cccccb89fc9f7e89f44c42b8ba12391 + 82d318fcf94da4f579381dafe68f1cff910b1e1a - + https://github.com/dotnet/aspnetcore - 5e6f639b8cccccb89fc9f7e89f44c42b8ba12391 + 82d318fcf94da4f579381dafe68f1cff910b1e1a - + https://github.com/dotnet/aspnetcore - 5e6f639b8cccccb89fc9f7e89f44c42b8ba12391 + 82d318fcf94da4f579381dafe68f1cff910b1e1a - + https://github.com/dotnet/aspnetcore - 5e6f639b8cccccb89fc9f7e89f44c42b8ba12391 + 82d318fcf94da4f579381dafe68f1cff910b1e1a - + https://github.com/dotnet/aspnetcore - 5e6f639b8cccccb89fc9f7e89f44c42b8ba12391 + 82d318fcf94da4f579381dafe68f1cff910b1e1a - + https://github.com/dotnet/aspnetcore - 5e6f639b8cccccb89fc9f7e89f44c42b8ba12391 + 82d318fcf94da4f579381dafe68f1cff910b1e1a https://github.com/dotnet/test-templates @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - f4f81550cdd234436b46be9b57d3d2068994a44f + 404cc838f62167b6ba143e444dde66f8e6032818 - + https://github.com/dotnet/sdk - f4f81550cdd234436b46be9b57d3d2068994a44f + 404cc838f62167b6ba143e444dde66f8e6032818 diff --git a/eng/Versions.props b/eng/Versions.props index be87a7cb3..007551ff8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,20 +52,20 @@ - 7.0.0-preview.5.22220.1 - 7.0.0-preview.5.22220.1 - 7.0.0-preview.5.22220.1 - 7.0.0-preview.5.22220.1 - 7.0.0-preview.5.22220.1 - 7.0.0-preview.5.22220.1 + 7.0.0-preview.5.22220.4 + 7.0.0-preview.5.22220.4 + 7.0.0-preview.5.22220.4 + 7.0.0-preview.5.22220.4 + 7.0.0-preview.5.22220.4 + 7.0.0-preview.5.22220.4 0.2.0 - 7.0.100-preview.5.22220.23 - 7.0.100-preview.5.22220.23 + 7.0.100-preview.5.22220.27 + 7.0.100-preview.5.22220.27 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 4bedc9f4ce4d3dab5cd59d2ff55e6095b53ca74e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 21 Apr 2022 08:58:20 +0000 Subject: [PATCH 40/77] Update dependencies from https://github.com/dotnet/sdk build 20220421.3 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22221.3 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22219.8 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6d610233c..de9bffae6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 404cc838f62167b6ba143e444dde66f8e6032818 + fbc3273b16ddcd8ca7e863c62da8f323a834bdd3 - + https://github.com/dotnet/sdk - 404cc838f62167b6ba143e444dde66f8e6032818 + fbc3273b16ddcd8ca7e863c62da8f323a834bdd3 diff --git a/eng/Versions.props b/eng/Versions.props index 007551ff8..b293da9b9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22220.27 - 7.0.100-preview.5.22220.27 + 7.0.100-preview.5.22221.3 + 7.0.100-preview.5.22221.3 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From aa334b1a0bfb2699136e319635ade9514a21c9d0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 21 Apr 2022 10:35:54 +0000 Subject: [PATCH 41/77] Update dependencies from https://github.com/dotnet/sdk build 20220421.7 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22221.7 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22219.8 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index de9bffae6..e31af4eb1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - fbc3273b16ddcd8ca7e863c62da8f323a834bdd3 + 97bc03cda767723397004455e20b7f852af6f08e - + https://github.com/dotnet/sdk - fbc3273b16ddcd8ca7e863c62da8f323a834bdd3 + 97bc03cda767723397004455e20b7f852af6f08e diff --git a/eng/Versions.props b/eng/Versions.props index b293da9b9..6aff4690a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22221.3 - 7.0.100-preview.5.22221.3 + 7.0.100-preview.5.22221.7 + 7.0.100-preview.5.22221.7 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From c2361eb6decd858b2b4c0b892761fd812f1a62b3 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 21 Apr 2022 19:52:00 +0000 Subject: [PATCH 42/77] Update dependencies from https://github.com/dotnet/sdk build 20220421.12 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22221.12 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22219.8 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e31af4eb1..ca9193615 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 97bc03cda767723397004455e20b7f852af6f08e + 7d23ded366366aa7c72dce019d800e49104d82b5 - + https://github.com/dotnet/sdk - 97bc03cda767723397004455e20b7f852af6f08e + 7d23ded366366aa7c72dce019d800e49104d82b5 diff --git a/eng/Versions.props b/eng/Versions.props index 6aff4690a..c2ae5381f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22221.7 - 7.0.100-preview.5.22221.7 + 7.0.100-preview.5.22221.12 + 7.0.100-preview.5.22221.12 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From d7e8cfeb7aadcf6f7f2f87708e40c8c70cb0678f Mon Sep 17 00:00:00 2001 From: Logan Bussell Date: Thu, 21 Apr 2022 13:34:55 -0700 Subject: [PATCH 43/77] add razor-compiler to source-build (#13679) --- .../tarball/content/repos/known-good.proj | 1 + .../tarball/content/repos/razor-compiler.proj | 21 +++++++++++++++++++ .../tarball/content/repos/sdk.proj | 1 + 3 files changed, 23 insertions(+) create mode 100644 src/SourceBuild/tarball/content/repos/razor-compiler.proj diff --git a/src/SourceBuild/tarball/content/repos/known-good.proj b/src/SourceBuild/tarball/content/repos/known-good.proj index e8547f439..9cb3a86ed 100644 --- a/src/SourceBuild/tarball/content/repos/known-good.proj +++ b/src/SourceBuild/tarball/content/repos/known-good.proj @@ -33,6 +33,7 @@ + diff --git a/src/SourceBuild/tarball/content/repos/razor-compiler.proj b/src/SourceBuild/tarball/content/repos/razor-compiler.proj new file mode 100644 index 000000000..f47d22c98 --- /dev/null +++ b/src/SourceBuild/tarball/content/repos/razor-compiler.proj @@ -0,0 +1,21 @@ + + + + + $(StandardSourceBuildCommand) $(StandardSourceBuildArgs) + + $(ProjectDirectory)global.json + $(ProjectDirectory)NuGet.config + false + + + + + + + + + + + + diff --git a/src/SourceBuild/tarball/content/repos/sdk.proj b/src/SourceBuild/tarball/content/repos/sdk.proj index e50b7dbc5..c18e00dd6 100644 --- a/src/SourceBuild/tarball/content/repos/sdk.proj +++ b/src/SourceBuild/tarball/content/repos/sdk.proj @@ -39,6 +39,7 @@ + From 7ba9a892bfae4c26802f10fcfbc0e9d9411c3d47 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 21 Apr 2022 23:50:01 +0000 Subject: [PATCH 44/77] Update dependencies from https://github.com/dotnet/sdk build 20220421.16 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22221.16 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22219.8 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ca9193615..0bf84d3de 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 7d23ded366366aa7c72dce019d800e49104d82b5 + b8535c3188f7dc50d9d3a3dd792bf8586026788e - + https://github.com/dotnet/sdk - 7d23ded366366aa7c72dce019d800e49104d82b5 + b8535c3188f7dc50d9d3a3dd792bf8586026788e diff --git a/eng/Versions.props b/eng/Versions.props index c2ae5381f..7ef8eb4ed 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22221.12 - 7.0.100-preview.5.22221.12 + 7.0.100-preview.5.22221.16 + 7.0.100-preview.5.22221.16 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From af7d66f95c8c436bea87c350c14742f6b51c9e9f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 22 Apr 2022 01:30:24 +0000 Subject: [PATCH 45/77] Update dependencies from https://github.com/dotnet/sdk build 20220421.17 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22221.17 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22219.8 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0bf84d3de..74cea39cf 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -52,30 +52,30 @@ https://github.com/dotnet/runtime e3442b43424f040faca7611d4bcf53a357397df8 - + https://github.com/dotnet/aspnetcore - 82d318fcf94da4f579381dafe68f1cff910b1e1a + cf513d3fed2c5918fa7059e0d0840d584db775fb - + https://github.com/dotnet/aspnetcore - 82d318fcf94da4f579381dafe68f1cff910b1e1a + cf513d3fed2c5918fa7059e0d0840d584db775fb - + https://github.com/dotnet/aspnetcore - 82d318fcf94da4f579381dafe68f1cff910b1e1a + cf513d3fed2c5918fa7059e0d0840d584db775fb - + https://github.com/dotnet/aspnetcore - 82d318fcf94da4f579381dafe68f1cff910b1e1a + cf513d3fed2c5918fa7059e0d0840d584db775fb - + https://github.com/dotnet/aspnetcore - 82d318fcf94da4f579381dafe68f1cff910b1e1a + cf513d3fed2c5918fa7059e0d0840d584db775fb - + https://github.com/dotnet/aspnetcore - 82d318fcf94da4f579381dafe68f1cff910b1e1a + cf513d3fed2c5918fa7059e0d0840d584db775fb https://github.com/dotnet/test-templates @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - b8535c3188f7dc50d9d3a3dd792bf8586026788e + c963b0404415522e133031e9bbe7bdc9ea975071 - + https://github.com/dotnet/sdk - b8535c3188f7dc50d9d3a3dd792bf8586026788e + c963b0404415522e133031e9bbe7bdc9ea975071 diff --git a/eng/Versions.props b/eng/Versions.props index 7ef8eb4ed..b5c64918f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,20 +52,20 @@ - 7.0.0-preview.5.22220.4 - 7.0.0-preview.5.22220.4 - 7.0.0-preview.5.22220.4 - 7.0.0-preview.5.22220.4 - 7.0.0-preview.5.22220.4 - 7.0.0-preview.5.22220.4 + 7.0.0-preview.5.22221.4 + 7.0.0-preview.5.22221.4 + 7.0.0-preview.5.22221.4 + 7.0.0-preview.5.22221.4 + 7.0.0-preview.5.22221.4 + 7.0.0-preview.5.22221.4 0.2.0 - 7.0.100-preview.5.22221.16 - 7.0.100-preview.5.22221.16 + 7.0.100-preview.5.22221.17 + 7.0.100-preview.5.22221.17 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 45ea1362ed73356fd8c57a08d3a2b4ace3f9446e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 22 Apr 2022 06:23:24 +0000 Subject: [PATCH 46/77] Update dependencies from https://github.com/dotnet/sdk build 20220421.18 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22221.18 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22219.8 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 74cea39cf..3a1169420 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - c963b0404415522e133031e9bbe7bdc9ea975071 + 10ed8b10b3e2cb11616b38f7147e8314af6bf556 - + https://github.com/dotnet/sdk - c963b0404415522e133031e9bbe7bdc9ea975071 + 10ed8b10b3e2cb11616b38f7147e8314af6bf556 @@ -130,9 +130,9 @@ 8854f5d1f3bd7e60d42565a18a2f8c06ae307474 - + https://github.com/microsoft/vstest - 120e1008423fcc9d3175e309fbdfaf3967260029 + 8bf2f0b47c4413dd65d556f629ae888ef8a3ee44 diff --git a/eng/Versions.props b/eng/Versions.props index b5c64918f..b1759127b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22221.17 - 7.0.100-preview.5.22221.17 + 7.0.100-preview.5.22221.18 + 7.0.100-preview.5.22221.18 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -167,7 +167,7 @@ 2.2.0-beta.19072.10 2.0.0 - 17.3.0-preview-20220420-02 + 17.3.0-preview-20220421-01 From 8cf0030f373b73ed7554e1ea2710afb74f629ee8 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 22 Apr 2022 07:23:26 +0000 Subject: [PATCH 47/77] Update dependencies from https://github.com/dotnet/sdk build 20220421.19 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22221.19 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22219.8 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3a1169420..4187d737c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 10ed8b10b3e2cb11616b38f7147e8314af6bf556 + fcd682845023a3dac1dc22704b6b17f69622db4d - + https://github.com/dotnet/sdk - 10ed8b10b3e2cb11616b38f7147e8314af6bf556 + fcd682845023a3dac1dc22704b6b17f69622db4d @@ -135,9 +135,9 @@ 8bf2f0b47c4413dd65d556f629ae888ef8a3ee44 - + https://github.com/dotnet/linker - 6374217e191b8cef0c5a3d862f4291583eb959f4 + 137b7b994e410843b783cb5b04c92a6ca693b2e8 linker @@ -146,9 +146,9 @@ 1e40aa11ca0b522e201320f70d469de40f211b2c - + https://github.com/dotnet/msbuild - 75795a4d02c93e6c66be6e699d3e6cbaaa080f50 + 3ade6423189769545ddff2ffeeed37010ec57f4d diff --git a/eng/Versions.props b/eng/Versions.props index b1759127b..ce5030895 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22221.18 - 7.0.100-preview.5.22221.18 + 7.0.100-preview.5.22221.19 + 7.0.100-preview.5.22221.19 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 94d22acbdd66383515acfdaed316d0ef56b24455 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 22 Apr 2022 08:30:00 +0000 Subject: [PATCH 48/77] Update dependencies from https://github.com/dotnet/sdk build 20220422.1 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22222.1 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22219.8 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4187d737c..462fa211c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -52,30 +52,30 @@ https://github.com/dotnet/runtime e3442b43424f040faca7611d4bcf53a357397df8 - + https://github.com/dotnet/aspnetcore - cf513d3fed2c5918fa7059e0d0840d584db775fb + 2a6ebdb7c30b59bee7223666f39df428cb3f316a - + https://github.com/dotnet/aspnetcore - cf513d3fed2c5918fa7059e0d0840d584db775fb + 2a6ebdb7c30b59bee7223666f39df428cb3f316a - + https://github.com/dotnet/aspnetcore - cf513d3fed2c5918fa7059e0d0840d584db775fb + 2a6ebdb7c30b59bee7223666f39df428cb3f316a - + https://github.com/dotnet/aspnetcore - cf513d3fed2c5918fa7059e0d0840d584db775fb + 2a6ebdb7c30b59bee7223666f39df428cb3f316a - + https://github.com/dotnet/aspnetcore - cf513d3fed2c5918fa7059e0d0840d584db775fb + 2a6ebdb7c30b59bee7223666f39df428cb3f316a - + https://github.com/dotnet/aspnetcore - cf513d3fed2c5918fa7059e0d0840d584db775fb + 2a6ebdb7c30b59bee7223666f39df428cb3f316a https://github.com/dotnet/test-templates @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - fcd682845023a3dac1dc22704b6b17f69622db4d + 322b685db193be906280e980308bc299e0fb6c01 - + https://github.com/dotnet/sdk - fcd682845023a3dac1dc22704b6b17f69622db4d + 322b685db193be906280e980308bc299e0fb6c01 diff --git a/eng/Versions.props b/eng/Versions.props index ce5030895..fa563f3c8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,20 +52,20 @@ - 7.0.0-preview.5.22221.4 - 7.0.0-preview.5.22221.4 - 7.0.0-preview.5.22221.4 - 7.0.0-preview.5.22221.4 - 7.0.0-preview.5.22221.4 - 7.0.0-preview.5.22221.4 + 7.0.0-preview.5.22221.6 + 7.0.0-preview.5.22221.6 + 7.0.0-preview.5.22221.6 + 7.0.0-preview.5.22221.6 + 7.0.0-preview.5.22221.6 + 7.0.0-preview.5.22221.6 0.2.0 - 7.0.100-preview.5.22221.19 - 7.0.100-preview.5.22221.19 + 7.0.100-preview.5.22222.1 + 7.0.100-preview.5.22222.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From db1147ed42a6e562e14cffaebb613baf0437a473 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 22 Apr 2022 09:33:37 +0000 Subject: [PATCH 49/77] Update dependencies from https://github.com/dotnet/sdk build 20220422.4 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22222.4 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22220.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 36 ++++++++++++++++++------------------ eng/Versions.props | 16 ++++++++-------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 462fa211c..37cc35692 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,21 +1,21 @@ - + https://github.com/dotnet/windowsdesktop - 1bb2225335f983c17ffe3468c160847e09f0dc4b + eb0a27f824207707b8a5a1dfb86ac97b9aade3d8 - + https://github.com/dotnet/windowsdesktop - 1bb2225335f983c17ffe3468c160847e09f0dc4b + eb0a27f824207707b8a5a1dfb86ac97b9aade3d8 - + https://github.com/dotnet/windowsdesktop - 1bb2225335f983c17ffe3468c160847e09f0dc4b + eb0a27f824207707b8a5a1dfb86ac97b9aade3d8 - + https://github.com/dotnet/windowsdesktop - 1bb2225335f983c17ffe3468c160847e09f0dc4b + eb0a27f824207707b8a5a1dfb86ac97b9aade3d8 https://github.com/dotnet/runtime @@ -103,23 +103,23 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 322b685db193be906280e980308bc299e0fb6c01 + 8b3ac09740621fe944e0c133112584cb5f875e5b - + https://github.com/dotnet/sdk - 322b685db193be906280e980308bc299e0fb6c01 + 8b3ac09740621fe944e0c133112584cb5f875e5b - + https://github.com/dotnet/winforms - 464f03d217a6c2287981010b399c1d4940b48edc + 87e84f3c08231c51647c85f654b07b2f234d0d7f - + https://github.com/dotnet/wpf - 99c95b07384677cd93ffaab798749d87c2ac13d1 + 570184f6815d7f430696bcba3015aa8fff45c2fe https://github.com/dotnet/fsharp @@ -141,9 +141,9 @@ linker - + https://github.com/dotnet/roslyn - 1e40aa11ca0b522e201320f70d469de40f211b2c + 432d17a83aa5623e4581756f4d642997048056bd diff --git a/eng/Versions.props b/eng/Versions.props index fa563f3c8..59cfa25c2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -30,11 +30,11 @@ - 7.0.0-preview.4.22219.3 + 7.0.0-preview.4.22220.1 - 7.0.0-preview.5.22219.4 + 7.0.0-preview.5.22220.1 @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22222.1 - 7.0.100-preview.5.22222.1 + 7.0.100-preview.5.22222.4 + 7.0.100-preview.5.22222.4 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -86,10 +86,10 @@ - 7.0.0-preview.5.22219.8 - 7.0.0-preview.5.22219.8 - 7.0.0-preview.5.22219.8 - 7.0.0-preview.5.22219.8 + 7.0.0-preview.5.22220.1 + 7.0.0-preview.5.22220.1 + 7.0.0-preview.5.22220.1 + 7.0.0-preview.5.22220.1 From 2dfde1d3ed47cdabd3e4a2de8c4e59e2fea02d6c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 22 Apr 2022 10:34:55 +0000 Subject: [PATCH 50/77] Update dependencies from https://github.com/dotnet/sdk build 20220422.5 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22222.5 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22220.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 37cc35692..77e5344b9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 8b3ac09740621fe944e0c133112584cb5f875e5b + 81d006a2709034d100d1970bf4322ea57cd1dd9e - + https://github.com/dotnet/sdk - 8b3ac09740621fe944e0c133112584cb5f875e5b + 81d006a2709034d100d1970bf4322ea57cd1dd9e diff --git a/eng/Versions.props b/eng/Versions.props index 59cfa25c2..44f35eea0 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22222.4 - 7.0.100-preview.5.22222.4 + 7.0.100-preview.5.22222.5 + 7.0.100-preview.5.22222.5 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From c4245bab591691e4abbd3a00e75e88f55c33af46 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 22 Apr 2022 15:26:23 +0000 Subject: [PATCH 51/77] Update dependencies from https://github.com/dotnet/sdk build 20220422.7 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22222.7 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22221.4 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 77e5344b9..aeff0d50b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,21 +1,21 @@ - + https://github.com/dotnet/windowsdesktop - eb0a27f824207707b8a5a1dfb86ac97b9aade3d8 + 779e8db828fe002f3a4b8eb47faf4267f82d440b - + https://github.com/dotnet/windowsdesktop - eb0a27f824207707b8a5a1dfb86ac97b9aade3d8 + 779e8db828fe002f3a4b8eb47faf4267f82d440b - + https://github.com/dotnet/windowsdesktop - eb0a27f824207707b8a5a1dfb86ac97b9aade3d8 + 779e8db828fe002f3a4b8eb47faf4267f82d440b - + https://github.com/dotnet/windowsdesktop - eb0a27f824207707b8a5a1dfb86ac97b9aade3d8 + 779e8db828fe002f3a4b8eb47faf4267f82d440b https://github.com/dotnet/runtime @@ -103,23 +103,23 @@ 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 - + https://github.com/dotnet/sdk - 81d006a2709034d100d1970bf4322ea57cd1dd9e + ad1ca90ad286288970a4ae1ec77e85848fef5a24 - + https://github.com/dotnet/sdk - 81d006a2709034d100d1970bf4322ea57cd1dd9e + ad1ca90ad286288970a4ae1ec77e85848fef5a24 - + https://github.com/dotnet/winforms - 87e84f3c08231c51647c85f654b07b2f234d0d7f + 0f538662744aced3eef5bbae7ce2200460901a2c - + https://github.com/dotnet/wpf - 570184f6815d7f430696bcba3015aa8fff45c2fe + 39f31b5fa482f738f89fdea8d98825db04495da3 https://github.com/dotnet/fsharp diff --git a/eng/Versions.props b/eng/Versions.props index 44f35eea0..10c9b6712 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -30,11 +30,11 @@ - 7.0.0-preview.4.22220.1 + 7.0.0-preview.4.22221.2 - 7.0.0-preview.5.22220.1 + 7.0.0-preview.5.22221.2 @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22222.5 - 7.0.100-preview.5.22222.5 + 7.0.100-preview.5.22222.7 + 7.0.100-preview.5.22222.7 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -86,10 +86,10 @@ - 7.0.0-preview.5.22220.1 - 7.0.0-preview.5.22220.1 - 7.0.0-preview.5.22220.1 - 7.0.0-preview.5.22220.1 + 7.0.0-preview.5.22221.4 + 7.0.0-preview.5.22221.4 + 7.0.0-preview.5.22221.4 + 7.0.0-preview.5.22221.4 From ad87f74a321add20cf3fcce5f70d7cb6cdc2d1dc Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 22 Apr 2022 20:50:16 +0000 Subject: [PATCH 52/77] Update dependencies from https://github.com/dotnet/sdk build 20220422.9 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22222.9 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22221.4 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 6 +++--- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index aeff0d50b..7801e34be 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -94,23 +94,23 @@ 94383b5042e7289ce57fd7c38dec0c879a6a772a - + https://github.com/dotnet/templating - 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 + df0d9900e094ad8c01b52357f21f272f2ae8ec9a - + https://github.com/dotnet/templating - 619f465fa426ccb543fb16cbcdb8d9a7c4004fb9 + df0d9900e094ad8c01b52357f21f272f2ae8ec9a - + https://github.com/dotnet/sdk - ad1ca90ad286288970a4ae1ec77e85848fef5a24 + 0f9425f556a23690e48f6f9bc6ef147eb95eb542 - + https://github.com/dotnet/sdk - ad1ca90ad286288970a4ae1ec77e85848fef5a24 + 0f9425f556a23690e48f6f9bc6ef147eb95eb542 diff --git a/eng/Versions.props b/eng/Versions.props index 10c9b6712..cd767a7a3 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -38,7 +38,7 @@ - 7.0.100-preview.4.22204.4 + 7.0.100-preview.5.22222.1 @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22222.7 - 7.0.100-preview.5.22222.7 + 7.0.100-preview.5.22222.9 + 7.0.100-preview.5.22222.9 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 210357cff26e5d5f9b2a602534ff51e906ab73b3 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 22 Apr 2022 21:53:38 +0000 Subject: [PATCH 53/77] Update dependencies from https://github.com/dotnet/sdk build 20220422.10 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22222.10 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22221.4 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7801e34be..cffe09dc2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -52,30 +52,30 @@ https://github.com/dotnet/runtime e3442b43424f040faca7611d4bcf53a357397df8 - + https://github.com/dotnet/aspnetcore - 2a6ebdb7c30b59bee7223666f39df428cb3f316a + bcdb13d1f2e42f2d318ead75e5e86fc27c78a117 - + https://github.com/dotnet/aspnetcore - 2a6ebdb7c30b59bee7223666f39df428cb3f316a + bcdb13d1f2e42f2d318ead75e5e86fc27c78a117 - + https://github.com/dotnet/aspnetcore - 2a6ebdb7c30b59bee7223666f39df428cb3f316a + bcdb13d1f2e42f2d318ead75e5e86fc27c78a117 - + https://github.com/dotnet/aspnetcore - 2a6ebdb7c30b59bee7223666f39df428cb3f316a + bcdb13d1f2e42f2d318ead75e5e86fc27c78a117 - + https://github.com/dotnet/aspnetcore - 2a6ebdb7c30b59bee7223666f39df428cb3f316a + bcdb13d1f2e42f2d318ead75e5e86fc27c78a117 - + https://github.com/dotnet/aspnetcore - 2a6ebdb7c30b59bee7223666f39df428cb3f316a + bcdb13d1f2e42f2d318ead75e5e86fc27c78a117 https://github.com/dotnet/test-templates @@ -103,14 +103,14 @@ df0d9900e094ad8c01b52357f21f272f2ae8ec9a - + https://github.com/dotnet/sdk - 0f9425f556a23690e48f6f9bc6ef147eb95eb542 + 4e35c47e93f5ac1b8b4d813fd4b3f69e2377afa7 - + https://github.com/dotnet/sdk - 0f9425f556a23690e48f6f9bc6ef147eb95eb542 + 4e35c47e93f5ac1b8b4d813fd4b3f69e2377afa7 diff --git a/eng/Versions.props b/eng/Versions.props index cd767a7a3..d27fcab6a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,20 +52,20 @@ - 7.0.0-preview.5.22221.6 - 7.0.0-preview.5.22221.6 - 7.0.0-preview.5.22221.6 - 7.0.0-preview.5.22221.6 - 7.0.0-preview.5.22221.6 - 7.0.0-preview.5.22221.6 + 7.0.0-preview.5.22222.1 + 7.0.0-preview.5.22222.1 + 7.0.0-preview.5.22222.1 + 7.0.0-preview.5.22222.1 + 7.0.0-preview.5.22222.1 + 7.0.0-preview.5.22222.1 0.2.0 - 7.0.100-preview.5.22222.9 - 7.0.100-preview.5.22222.9 + 7.0.100-preview.5.22222.10 + 7.0.100-preview.5.22222.10 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From d5d734cb56c0764d04acf2c8b48753c3cd31dfa3 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 23 Apr 2022 00:52:21 +0000 Subject: [PATCH 54/77] Update dependencies from https://github.com/dotnet/sdk build 20220422.11 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22222.11 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22221.4 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index cffe09dc2..dcd6f63c8 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ df0d9900e094ad8c01b52357f21f272f2ae8ec9a - + https://github.com/dotnet/sdk - 4e35c47e93f5ac1b8b4d813fd4b3f69e2377afa7 + 9838c00cfe4b64c822bb5a7b919b60d4f987b4cd - + https://github.com/dotnet/sdk - 4e35c47e93f5ac1b8b4d813fd4b3f69e2377afa7 + 9838c00cfe4b64c822bb5a7b919b60d4f987b4cd @@ -135,9 +135,9 @@ 8bf2f0b47c4413dd65d556f629ae888ef8a3ee44 - + https://github.com/dotnet/linker - 137b7b994e410843b783cb5b04c92a6ca693b2e8 + dec9a23c4c164111df76d427656357113c0d705a linker diff --git a/eng/Versions.props b/eng/Versions.props index d27fcab6a..972935b52 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22222.10 - 7.0.100-preview.5.22222.10 + 7.0.100-preview.5.22222.11 + 7.0.100-preview.5.22222.11 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 617cf70d38a13311524ed18ebc5c0a6c596134bd Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 23 Apr 2022 14:49:38 +0000 Subject: [PATCH 55/77] Update dependencies from https://github.com/dotnet/sdk build 20220423.1 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22223.1 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22222.7 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index dcd6f63c8..7ef935d99 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,21 +1,21 @@ - + https://github.com/dotnet/windowsdesktop - 779e8db828fe002f3a4b8eb47faf4267f82d440b + bba185f71185143a10dd14de5622047da29f254a - + https://github.com/dotnet/windowsdesktop - 779e8db828fe002f3a4b8eb47faf4267f82d440b + bba185f71185143a10dd14de5622047da29f254a - + https://github.com/dotnet/windowsdesktop - 779e8db828fe002f3a4b8eb47faf4267f82d440b + bba185f71185143a10dd14de5622047da29f254a - + https://github.com/dotnet/windowsdesktop - 779e8db828fe002f3a4b8eb47faf4267f82d440b + bba185f71185143a10dd14de5622047da29f254a https://github.com/dotnet/runtime @@ -103,23 +103,23 @@ df0d9900e094ad8c01b52357f21f272f2ae8ec9a - + https://github.com/dotnet/sdk - 9838c00cfe4b64c822bb5a7b919b60d4f987b4cd + 0d2d00efbb53dc8a60a258d5fce8da6f4bd25977 - + https://github.com/dotnet/sdk - 9838c00cfe4b64c822bb5a7b919b60d4f987b4cd + 0d2d00efbb53dc8a60a258d5fce8da6f4bd25977 - + https://github.com/dotnet/winforms - 0f538662744aced3eef5bbae7ce2200460901a2c + 0b2ee90e0c1c08458fdebaf72c81f0833e90b8f1 - + https://github.com/dotnet/wpf - 39f31b5fa482f738f89fdea8d98825db04495da3 + e7a5812a1564b364ec0e2fc9db8db44fde3918a4 https://github.com/dotnet/fsharp diff --git a/eng/Versions.props b/eng/Versions.props index 972935b52..cb6ffb0ce 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -30,11 +30,11 @@ - 7.0.0-preview.4.22221.2 + 7.0.0-preview.4.22222.5 - 7.0.0-preview.5.22221.2 + 7.0.0-preview.5.22222.6 @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22222.11 - 7.0.100-preview.5.22222.11 + 7.0.100-preview.5.22223.1 + 7.0.100-preview.5.22223.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -86,10 +86,10 @@ - 7.0.0-preview.5.22221.4 - 7.0.0-preview.5.22221.4 - 7.0.0-preview.5.22221.4 - 7.0.0-preview.5.22221.4 + 7.0.0-preview.5.22222.7 + 7.0.0-preview.5.22222.7 + 7.0.0-preview.5.22222.7 + 7.0.0-preview.5.22222.7 From fd16b62a4b12677f5c04acd6a51d47195b8c59cd Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sun, 24 Apr 2022 05:47:39 +0000 Subject: [PATCH 56/77] Update dependencies from https://github.com/dotnet/sdk build 20220423.2 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22223.2 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22222.7 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7ef935d99..a04fee067 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -52,30 +52,30 @@ https://github.com/dotnet/runtime e3442b43424f040faca7611d4bcf53a357397df8 - + https://github.com/dotnet/aspnetcore - bcdb13d1f2e42f2d318ead75e5e86fc27c78a117 + 2f68ef8d42646046eb36ff2db5f17965a7893545 - + https://github.com/dotnet/aspnetcore - bcdb13d1f2e42f2d318ead75e5e86fc27c78a117 + 2f68ef8d42646046eb36ff2db5f17965a7893545 - + https://github.com/dotnet/aspnetcore - bcdb13d1f2e42f2d318ead75e5e86fc27c78a117 + 2f68ef8d42646046eb36ff2db5f17965a7893545 - + https://github.com/dotnet/aspnetcore - bcdb13d1f2e42f2d318ead75e5e86fc27c78a117 + 2f68ef8d42646046eb36ff2db5f17965a7893545 - + https://github.com/dotnet/aspnetcore - bcdb13d1f2e42f2d318ead75e5e86fc27c78a117 + 2f68ef8d42646046eb36ff2db5f17965a7893545 - + https://github.com/dotnet/aspnetcore - bcdb13d1f2e42f2d318ead75e5e86fc27c78a117 + 2f68ef8d42646046eb36ff2db5f17965a7893545 https://github.com/dotnet/test-templates @@ -103,14 +103,14 @@ df0d9900e094ad8c01b52357f21f272f2ae8ec9a - + https://github.com/dotnet/sdk - 0d2d00efbb53dc8a60a258d5fce8da6f4bd25977 + 2c283912b2f355e912573275d5d07c1382697309 - + https://github.com/dotnet/sdk - 0d2d00efbb53dc8a60a258d5fce8da6f4bd25977 + 2c283912b2f355e912573275d5d07c1382697309 diff --git a/eng/Versions.props b/eng/Versions.props index cb6ffb0ce..f0053fab2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,20 +52,20 @@ - 7.0.0-preview.5.22222.1 - 7.0.0-preview.5.22222.1 - 7.0.0-preview.5.22222.1 - 7.0.0-preview.5.22222.1 - 7.0.0-preview.5.22222.1 - 7.0.0-preview.5.22222.1 + 7.0.0-preview.5.22222.2 + 7.0.0-preview.5.22222.2 + 7.0.0-preview.5.22222.2 + 7.0.0-preview.5.22222.2 + 7.0.0-preview.5.22222.2 + 7.0.0-preview.5.22222.2 0.2.0 - 7.0.100-preview.5.22223.1 - 7.0.100-preview.5.22223.1 + 7.0.100-preview.5.22223.2 + 7.0.100-preview.5.22223.2 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From d85a1acda034d3851437cff7cd80251f2558cdc5 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sun, 24 Apr 2022 06:43:28 +0000 Subject: [PATCH 57/77] Update dependencies from https://github.com/dotnet/sdk build 20220423.3 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22223.3 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22222.7 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a04fee067..254c0163a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ df0d9900e094ad8c01b52357f21f272f2ae8ec9a - + https://github.com/dotnet/sdk - 2c283912b2f355e912573275d5d07c1382697309 + 9511166ae16c9cd973b7c8372a7ddb26ccf97655 - + https://github.com/dotnet/sdk - 2c283912b2f355e912573275d5d07c1382697309 + 9511166ae16c9cd973b7c8372a7ddb26ccf97655 diff --git a/eng/Versions.props b/eng/Versions.props index f0053fab2..15bfb1596 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22223.2 - 7.0.100-preview.5.22223.2 + 7.0.100-preview.5.22223.3 + 7.0.100-preview.5.22223.3 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 2bf3528c5d17077e961d7f7e06292d7cbeb6da61 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sun, 24 Apr 2022 08:43:00 +0000 Subject: [PATCH 58/77] Update dependencies from https://github.com/dotnet/sdk build 20220424.3 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22224.3 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22222.7 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 254c0163a..a2864d6e4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ df0d9900e094ad8c01b52357f21f272f2ae8ec9a - + https://github.com/dotnet/sdk - 9511166ae16c9cd973b7c8372a7ddb26ccf97655 + 37a202d7f02cb9f2e57eb0ab44fc7c2b3b38d50e - + https://github.com/dotnet/sdk - 9511166ae16c9cd973b7c8372a7ddb26ccf97655 + 37a202d7f02cb9f2e57eb0ab44fc7c2b3b38d50e @@ -141,9 +141,9 @@ linker - + https://github.com/dotnet/roslyn - 432d17a83aa5623e4581756f4d642997048056bd + c9d9e122cfff99ce9508a54897254d407b148f48 diff --git a/eng/Versions.props b/eng/Versions.props index 15bfb1596..20c824d32 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22223.3 - 7.0.100-preview.5.22223.3 + 7.0.100-preview.5.22224.3 + 7.0.100-preview.5.22224.3 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 7f3b85537bcb4debcf3cb558213fb4f5fe286f21 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sun, 24 Apr 2022 09:58:47 +0000 Subject: [PATCH 59/77] Update dependencies from https://github.com/dotnet/sdk build 20220424.4 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22224.4 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22222.7 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a2864d6e4..c98d0bb68 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ df0d9900e094ad8c01b52357f21f272f2ae8ec9a - + https://github.com/dotnet/sdk - 37a202d7f02cb9f2e57eb0ab44fc7c2b3b38d50e + a72928aae83eb2996806c87b73af64cd80d50de7 - + https://github.com/dotnet/sdk - 37a202d7f02cb9f2e57eb0ab44fc7c2b3b38d50e + a72928aae83eb2996806c87b73af64cd80d50de7 diff --git a/eng/Versions.props b/eng/Versions.props index 20c824d32..56587a29a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22224.3 - 7.0.100-preview.5.22224.3 + 7.0.100-preview.5.22224.4 + 7.0.100-preview.5.22224.4 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From b67705202b8980daaf0219d251a524c2c870724a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sun, 24 Apr 2022 11:46:25 +0000 Subject: [PATCH 60/77] Update dependencies from https://github.com/dotnet/sdk build 20220424.6 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22224.6 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22222.7 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c98d0bb68..8a401e483 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ df0d9900e094ad8c01b52357f21f272f2ae8ec9a - + https://github.com/dotnet/sdk - a72928aae83eb2996806c87b73af64cd80d50de7 + 04058a3f48337184fed51455139a3d897ae66155 - + https://github.com/dotnet/sdk - a72928aae83eb2996806c87b73af64cd80d50de7 + 04058a3f48337184fed51455139a3d897ae66155 @@ -130,9 +130,9 @@ 8854f5d1f3bd7e60d42565a18a2f8c06ae307474 - + https://github.com/microsoft/vstest - 8bf2f0b47c4413dd65d556f629ae888ef8a3ee44 + fe9fe5e0e895d54b02c3c654f930fd9cb11832d3 diff --git a/eng/Versions.props b/eng/Versions.props index 56587a29a..912755a9f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22224.4 - 7.0.100-preview.5.22224.4 + 7.0.100-preview.5.22224.6 + 7.0.100-preview.5.22224.6 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -167,7 +167,7 @@ 2.2.0-beta.19072.10 2.0.0 - 17.3.0-preview-20220421-01 + 17.3.0-preview-20220422-07 From 135fa4cd670af71e9716b5bde85da02618354516 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 25 Apr 2022 00:38:27 +0000 Subject: [PATCH 61/77] Update dependencies from https://github.com/dotnet/sdk build 20220424.7 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22224.7 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22222.7 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8a401e483..73db7b552 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -52,30 +52,30 @@ https://github.com/dotnet/runtime e3442b43424f040faca7611d4bcf53a357397df8 - + https://github.com/dotnet/aspnetcore - 2f68ef8d42646046eb36ff2db5f17965a7893545 + 7c1e6d553209741f615628a8fbe3d7d09c0c43b0 - + https://github.com/dotnet/aspnetcore - 2f68ef8d42646046eb36ff2db5f17965a7893545 + 7c1e6d553209741f615628a8fbe3d7d09c0c43b0 - + https://github.com/dotnet/aspnetcore - 2f68ef8d42646046eb36ff2db5f17965a7893545 + 7c1e6d553209741f615628a8fbe3d7d09c0c43b0 - + https://github.com/dotnet/aspnetcore - 2f68ef8d42646046eb36ff2db5f17965a7893545 + 7c1e6d553209741f615628a8fbe3d7d09c0c43b0 - + https://github.com/dotnet/aspnetcore - 2f68ef8d42646046eb36ff2db5f17965a7893545 + 7c1e6d553209741f615628a8fbe3d7d09c0c43b0 - + https://github.com/dotnet/aspnetcore - 2f68ef8d42646046eb36ff2db5f17965a7893545 + 7c1e6d553209741f615628a8fbe3d7d09c0c43b0 https://github.com/dotnet/test-templates @@ -103,14 +103,14 @@ df0d9900e094ad8c01b52357f21f272f2ae8ec9a - + https://github.com/dotnet/sdk - 04058a3f48337184fed51455139a3d897ae66155 + af42936e200fadf6ab10a7a13da4aeeb505996c2 - + https://github.com/dotnet/sdk - 04058a3f48337184fed51455139a3d897ae66155 + af42936e200fadf6ab10a7a13da4aeeb505996c2 diff --git a/eng/Versions.props b/eng/Versions.props index 912755a9f..eea635ab1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,20 +52,20 @@ - 7.0.0-preview.5.22222.2 - 7.0.0-preview.5.22222.2 - 7.0.0-preview.5.22222.2 - 7.0.0-preview.5.22222.2 - 7.0.0-preview.5.22222.2 - 7.0.0-preview.5.22222.2 + 7.0.0-preview.5.22224.1 + 7.0.0-preview.5.22224.1 + 7.0.0-preview.5.22224.1 + 7.0.0-preview.5.22224.1 + 7.0.0-preview.5.22224.1 + 7.0.0-preview.5.22224.1 0.2.0 - 7.0.100-preview.5.22224.6 - 7.0.100-preview.5.22224.6 + 7.0.100-preview.5.22224.7 + 7.0.100-preview.5.22224.7 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 5ace62e9a78c5b654b1e9ec4d33fc9a69987fea9 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 25 Apr 2022 03:08:04 +0000 Subject: [PATCH 62/77] Update dependencies from https://github.com/dotnet/sdk build 20220424.8 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22224.8 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22222.7 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 73db7b552..066c0ddd0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ df0d9900e094ad8c01b52357f21f272f2ae8ec9a - + https://github.com/dotnet/sdk - af42936e200fadf6ab10a7a13da4aeeb505996c2 + 34469d429eecb10b1e6fde202deffecacb3dda78 - + https://github.com/dotnet/sdk - af42936e200fadf6ab10a7a13da4aeeb505996c2 + 34469d429eecb10b1e6fde202deffecacb3dda78 @@ -146,9 +146,9 @@ c9d9e122cfff99ce9508a54897254d407b148f48 - + https://github.com/dotnet/msbuild - 3ade6423189769545ddff2ffeeed37010ec57f4d + 12bf0a8ae0c4362b0b3fdcfb3eba75132db9bc69 diff --git a/eng/Versions.props b/eng/Versions.props index eea635ab1..f1e2cfa04 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22224.7 - 7.0.100-preview.5.22224.7 + 7.0.100-preview.5.22224.8 + 7.0.100-preview.5.22224.8 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 707206c29c4e2eefe0389b8fa050ebff679d679e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 25 Apr 2022 04:26:21 +0000 Subject: [PATCH 63/77] Update dependencies from https://github.com/dotnet/sdk build 20220424.9 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22224.9 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22222.7 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 066c0ddd0..0254dae20 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ df0d9900e094ad8c01b52357f21f272f2ae8ec9a - + https://github.com/dotnet/sdk - 34469d429eecb10b1e6fde202deffecacb3dda78 + e849128c0912a7dd1a25404284a6c82888739415 - + https://github.com/dotnet/sdk - 34469d429eecb10b1e6fde202deffecacb3dda78 + e849128c0912a7dd1a25404284a6c82888739415 @@ -130,9 +130,9 @@ 8854f5d1f3bd7e60d42565a18a2f8c06ae307474 - + https://github.com/microsoft/vstest - fe9fe5e0e895d54b02c3c654f930fd9cb11832d3 + c8f881a518377cb723e41f13dbb7a02d2f2712fb diff --git a/eng/Versions.props b/eng/Versions.props index f1e2cfa04..bdd99924f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22224.8 - 7.0.100-preview.5.22224.8 + 7.0.100-preview.5.22224.9 + 7.0.100-preview.5.22224.9 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -167,7 +167,7 @@ 2.2.0-beta.19072.10 2.0.0 - 17.3.0-preview-20220422-07 + 17.3.0-preview-20220423-01 From 3a5a73433454366ef00a824ef96fd254065609b4 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 25 Apr 2022 05:08:59 +0000 Subject: [PATCH 64/77] Update dependencies from https://github.com/dotnet/sdk build 20220424.10 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22224.10 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22223.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 26 +++++++++---------- 2 files changed, 41 insertions(+), 41 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0254dae20..b334d3caf 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,21 +1,21 @@ - + https://github.com/dotnet/windowsdesktop - bba185f71185143a10dd14de5622047da29f254a + efc4e2c984aab17f3d975f2d87d9a995675f5a58 - + https://github.com/dotnet/windowsdesktop - bba185f71185143a10dd14de5622047da29f254a + efc4e2c984aab17f3d975f2d87d9a995675f5a58 - + https://github.com/dotnet/windowsdesktop - bba185f71185143a10dd14de5622047da29f254a + efc4e2c984aab17f3d975f2d87d9a995675f5a58 - + https://github.com/dotnet/windowsdesktop - bba185f71185143a10dd14de5622047da29f254a + efc4e2c984aab17f3d975f2d87d9a995675f5a58 https://github.com/dotnet/runtime @@ -52,30 +52,30 @@ https://github.com/dotnet/runtime e3442b43424f040faca7611d4bcf53a357397df8 - + https://github.com/dotnet/aspnetcore - 7c1e6d553209741f615628a8fbe3d7d09c0c43b0 + 1ea7f29104772615fb461016a014a32b1f67d83a - + https://github.com/dotnet/aspnetcore - 7c1e6d553209741f615628a8fbe3d7d09c0c43b0 + 1ea7f29104772615fb461016a014a32b1f67d83a - + https://github.com/dotnet/aspnetcore - 7c1e6d553209741f615628a8fbe3d7d09c0c43b0 + 1ea7f29104772615fb461016a014a32b1f67d83a - + https://github.com/dotnet/aspnetcore - 7c1e6d553209741f615628a8fbe3d7d09c0c43b0 + 1ea7f29104772615fb461016a014a32b1f67d83a - + https://github.com/dotnet/aspnetcore - 7c1e6d553209741f615628a8fbe3d7d09c0c43b0 + 1ea7f29104772615fb461016a014a32b1f67d83a - + https://github.com/dotnet/aspnetcore - 7c1e6d553209741f615628a8fbe3d7d09c0c43b0 + 1ea7f29104772615fb461016a014a32b1f67d83a https://github.com/dotnet/test-templates @@ -94,23 +94,23 @@ 94383b5042e7289ce57fd7c38dec0c879a6a772a - + https://github.com/dotnet/templating - df0d9900e094ad8c01b52357f21f272f2ae8ec9a + d381f307413f95af117c6e5afa81979970d582a5 - + https://github.com/dotnet/templating - df0d9900e094ad8c01b52357f21f272f2ae8ec9a + d381f307413f95af117c6e5afa81979970d582a5 - + https://github.com/dotnet/sdk - e849128c0912a7dd1a25404284a6c82888739415 + c3f8d746f4d5cd87f462d711a3caa7a4f6621826 - + https://github.com/dotnet/sdk - e849128c0912a7dd1a25404284a6c82888739415 + c3f8d746f4d5cd87f462d711a3caa7a4f6621826 diff --git a/eng/Versions.props b/eng/Versions.props index bdd99924f..935c3bff3 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -38,7 +38,7 @@ - 7.0.100-preview.5.22222.1 + 7.0.100-preview.5.22224.1 @@ -52,20 +52,20 @@ - 7.0.0-preview.5.22224.1 - 7.0.0-preview.5.22224.1 - 7.0.0-preview.5.22224.1 - 7.0.0-preview.5.22224.1 - 7.0.0-preview.5.22224.1 - 7.0.0-preview.5.22224.1 + 7.0.0-preview.5.22224.2 + 7.0.0-preview.5.22224.2 + 7.0.0-preview.5.22224.2 + 7.0.0-preview.5.22224.2 + 7.0.0-preview.5.22224.2 + 7.0.0-preview.5.22224.2 0.2.0 - 7.0.100-preview.5.22224.9 - 7.0.100-preview.5.22224.9 + 7.0.100-preview.5.22224.10 + 7.0.100-preview.5.22224.10 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -86,10 +86,10 @@ - 7.0.0-preview.5.22222.7 - 7.0.0-preview.5.22222.7 - 7.0.0-preview.5.22222.7 - 7.0.0-preview.5.22222.7 + 7.0.0-preview.5.22223.1 + 7.0.0-preview.5.22223.1 + 7.0.0-preview.5.22223.1 + 7.0.0-preview.5.22223.1 From 8deac0a52acf3eaf61924cb2c82fbf197407c6f3 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 25 Apr 2022 14:02:02 +0000 Subject: [PATCH 65/77] Update dependencies from https://github.com/dotnet/sdk build 20220425.1 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22225.1 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22223.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b334d3caf..bc9beaa91 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ d381f307413f95af117c6e5afa81979970d582a5 - + https://github.com/dotnet/sdk - c3f8d746f4d5cd87f462d711a3caa7a4f6621826 + 8a1a7c5e4aeb51325c84f601e0b268bc86b0fc7d - + https://github.com/dotnet/sdk - c3f8d746f4d5cd87f462d711a3caa7a4f6621826 + 8a1a7c5e4aeb51325c84f601e0b268bc86b0fc7d diff --git a/eng/Versions.props b/eng/Versions.props index 935c3bff3..968af2eaf 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22224.10 - 7.0.100-preview.5.22224.10 + 7.0.100-preview.5.22225.1 + 7.0.100-preview.5.22225.1 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From e0243c5b18cc34b1c47a09f4234c85aa00869652 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 25 Apr 2022 17:49:29 +0000 Subject: [PATCH 66/77] Update dependencies from https://github.com/dotnet/sdk build 20220425.3 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22225.3 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22223.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index bc9beaa91..f94812a6b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -52,30 +52,30 @@ https://github.com/dotnet/runtime e3442b43424f040faca7611d4bcf53a357397df8 - + https://github.com/dotnet/aspnetcore - 1ea7f29104772615fb461016a014a32b1f67d83a + 717fd3f85eee4fcf0d22a866c5e7e03b0dd3200a - + https://github.com/dotnet/aspnetcore - 1ea7f29104772615fb461016a014a32b1f67d83a + 717fd3f85eee4fcf0d22a866c5e7e03b0dd3200a - + https://github.com/dotnet/aspnetcore - 1ea7f29104772615fb461016a014a32b1f67d83a + 717fd3f85eee4fcf0d22a866c5e7e03b0dd3200a - + https://github.com/dotnet/aspnetcore - 1ea7f29104772615fb461016a014a32b1f67d83a + 717fd3f85eee4fcf0d22a866c5e7e03b0dd3200a - + https://github.com/dotnet/aspnetcore - 1ea7f29104772615fb461016a014a32b1f67d83a + 717fd3f85eee4fcf0d22a866c5e7e03b0dd3200a - + https://github.com/dotnet/aspnetcore - 1ea7f29104772615fb461016a014a32b1f67d83a + 717fd3f85eee4fcf0d22a866c5e7e03b0dd3200a https://github.com/dotnet/test-templates @@ -103,14 +103,14 @@ d381f307413f95af117c6e5afa81979970d582a5 - + https://github.com/dotnet/sdk - 8a1a7c5e4aeb51325c84f601e0b268bc86b0fc7d + 6698cd97f38ea3ad2c7182f95e5b9ec887c29f56 - + https://github.com/dotnet/sdk - 8a1a7c5e4aeb51325c84f601e0b268bc86b0fc7d + 6698cd97f38ea3ad2c7182f95e5b9ec887c29f56 diff --git a/eng/Versions.props b/eng/Versions.props index 968af2eaf..829d06918 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,20 +52,20 @@ - 7.0.0-preview.5.22224.2 - 7.0.0-preview.5.22224.2 - 7.0.0-preview.5.22224.2 - 7.0.0-preview.5.22224.2 - 7.0.0-preview.5.22224.2 - 7.0.0-preview.5.22224.2 + 7.0.0-preview.5.22225.1 + 7.0.0-preview.5.22225.1 + 7.0.0-preview.5.22225.1 + 7.0.0-preview.5.22225.1 + 7.0.0-preview.5.22225.1 + 7.0.0-preview.5.22225.1 0.2.0 - 7.0.100-preview.5.22225.1 - 7.0.100-preview.5.22225.1 + 7.0.100-preview.5.22225.3 + 7.0.100-preview.5.22225.3 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 271b9fe16b3a74f49f7a37fc720623642cc68dc0 Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Mon, 25 Apr 2022 11:22:49 -0700 Subject: [PATCH 67/77] Update readme for preview 4 (#13691) --- README.md | 156 +++++++++--------- .../TableGenerator/Program.fs | 6 +- 2 files changed, 81 insertions(+), 81 deletions(-) diff --git a/README.md b/README.md index f72aef892..e71541d91 100644 --- a/README.md +++ b/README.md @@ -129,20 +129,20 @@ Please do not directly edit the table below. Use https://github.com/dotnet/insta ### Table -| Platform | main
(7.0.x Runtime) | Release/7.0.1xx-preview3
(7.0.x Runtime) | Release/6.0.3XX
(6.0.x Runtime) | Release/6.0.2XX
(6.0.x Runtime) | Release/6.0.1XX
(6.0.x Runtime) | Release/5.0.4XX
(5.0 Runtime) | Release/5.0.2XX
(5.0 Runtime) | Release/3.1.4XX
(3.1.x Runtime) | +| Platform | main
(7.0.x Runtime) | Release/7.0.1xx-preview4
(7.0.x Runtime) | Release/6.0.3XX
(6.0.x Runtime) | Release/6.0.2XX
(6.0.x Runtime) | Release/6.0.1XX
(6.0.x Runtime) | Release/5.0.4XX
(5.0 Runtime) | Release/5.0.2XX
(5.0 Runtime) | Release/3.1.4XX
(3.1.x Runtime) | | :--------- | :----------: | :----------: | :----------: | :----------: | :----------: | :----------: | :----------: | :----------: | -| **Windows x64** | [![][win-x64-badge-main]][win-x64-version-main]
[Installer][win-x64-installer-main] - [Checksum][win-x64-installer-checksum-main]
[zip][win-x64-zip-main] - [Checksum][win-x64-zip-checksum-main] | [![][win-x64-badge-7.0.1XX-preview3]][win-x64-version-7.0.1XX-preview3]
[Installer][win-x64-installer-7.0.1XX-preview3] - [Checksum][win-x64-installer-checksum-7.0.1XX-preview3]
[zip][win-x64-zip-7.0.1XX-preview3] - [Checksum][win-x64-zip-checksum-7.0.1XX-preview3] | [![][win-x64-badge-6.0.3XX]][win-x64-version-6.0.3XX]
[Installer][win-x64-installer-6.0.3XX] - [Checksum][win-x64-installer-checksum-6.0.3XX]
[zip][win-x64-zip-6.0.3XX] - [Checksum][win-x64-zip-checksum-6.0.3XX] | [![][win-x64-badge-6.0.2XX]][win-x64-version-6.0.2XX]
[Installer][win-x64-installer-6.0.2XX] - [Checksum][win-x64-installer-checksum-6.0.2XX]
[zip][win-x64-zip-6.0.2XX] - [Checksum][win-x64-zip-checksum-6.0.2XX] | [![][win-x64-badge-6.0.1XX]][win-x64-version-6.0.1XX]
[Installer][win-x64-installer-6.0.1XX] - [Checksum][win-x64-installer-checksum-6.0.1XX]
[zip][win-x64-zip-6.0.1XX] - [Checksum][win-x64-zip-checksum-6.0.1XX] | [![][win-x64-badge-5.0.4XX]][win-x64-version-5.0.4XX]
[Installer][win-x64-installer-5.0.4XX] - [Checksum][win-x64-installer-checksum-5.0.4XX]
[zip][win-x64-zip-5.0.4XX] - [Checksum][win-x64-zip-checksum-5.0.4XX] | [![][win-x64-badge-5.0.2XX]][win-x64-version-5.0.2XX]
[Installer][win-x64-installer-5.0.2XX] - [Checksum][win-x64-installer-checksum-5.0.2XX]
[zip][win-x64-zip-5.0.2XX] - [Checksum][win-x64-zip-checksum-5.0.2XX] | [![][win-x64-badge-3.1.4XX]][win-x64-version-3.1.4XX]
[Installer][win-x64-installer-3.1.4XX] - [Checksum][win-x64-installer-checksum-3.1.4XX]
[zip][win-x64-zip-3.1.4XX] - [Checksum][win-x64-zip-checksum-3.1.4XX] | -| **Windows x86** | [![][win-x86-badge-main]][win-x86-version-main]
[Installer][win-x86-installer-main] - [Checksum][win-x86-installer-checksum-main]
[zip][win-x86-zip-main] - [Checksum][win-x86-zip-checksum-main] | [![][win-x86-badge-7.0.1XX-preview3]][win-x86-version-7.0.1XX-preview3]
[Installer][win-x86-installer-7.0.1XX-preview3] - [Checksum][win-x86-installer-checksum-7.0.1XX-preview3]
[zip][win-x86-zip-7.0.1XX-preview3] - [Checksum][win-x86-zip-checksum-7.0.1XX-preview3] | [![][win-x86-badge-6.0.3XX]][win-x86-version-6.0.3XX]
[Installer][win-x86-installer-6.0.3XX] - [Checksum][win-x86-installer-checksum-6.0.3XX]
[zip][win-x86-zip-6.0.3XX] - [Checksum][win-x86-zip-checksum-6.0.3XX] | [![][win-x86-badge-6.0.2XX]][win-x86-version-6.0.2XX]
[Installer][win-x86-installer-6.0.2XX] - [Checksum][win-x86-installer-checksum-6.0.2XX]
[zip][win-x86-zip-6.0.2XX] - [Checksum][win-x86-zip-checksum-6.0.2XX] | [![][win-x86-badge-6.0.1XX]][win-x86-version-6.0.1XX]
[Installer][win-x86-installer-6.0.1XX] - [Checksum][win-x86-installer-checksum-6.0.1XX]
[zip][win-x86-zip-6.0.1XX] - [Checksum][win-x86-zip-checksum-6.0.1XX] | [![][win-x86-badge-5.0.4XX]][win-x86-version-5.0.4XX]
[Installer][win-x86-installer-5.0.4XX] - [Checksum][win-x86-installer-checksum-5.0.4XX]
[zip][win-x86-zip-5.0.4XX] - [Checksum][win-x86-zip-checksum-5.0.4XX] | [![][win-x86-badge-5.0.2XX]][win-x86-version-5.0.2XX]
[Installer][win-x86-installer-5.0.2XX] - [Checksum][win-x86-installer-checksum-5.0.2XX]
[zip][win-x86-zip-5.0.2XX] - [Checksum][win-x86-zip-checksum-5.0.2XX] | [![][win-x86-badge-3.1.4XX]][win-x86-version-3.1.4XX]
[Installer][win-x86-installer-3.1.4XX] - [Checksum][win-x86-installer-checksum-3.1.4XX]
[zip][win-x86-zip-3.1.4XX] - [Checksum][win-x86-zip-checksum-3.1.4XX] | +| **Windows x64** | [![][win-x64-badge-main]][win-x64-version-main]
[Installer][win-x64-installer-main] - [Checksum][win-x64-installer-checksum-main]
[zip][win-x64-zip-main] - [Checksum][win-x64-zip-checksum-main] | [![][win-x64-badge-7.0.1XX-preview4]][win-x64-version-7.0.1XX-preview4]
[Installer][win-x64-installer-7.0.1XX-preview4] - [Checksum][win-x64-installer-checksum-7.0.1XX-preview4]
[zip][win-x64-zip-7.0.1XX-preview4] - [Checksum][win-x64-zip-checksum-7.0.1XX-preview4] | [![][win-x64-badge-6.0.3XX]][win-x64-version-6.0.3XX]
[Installer][win-x64-installer-6.0.3XX] - [Checksum][win-x64-installer-checksum-6.0.3XX]
[zip][win-x64-zip-6.0.3XX] - [Checksum][win-x64-zip-checksum-6.0.3XX] | [![][win-x64-badge-6.0.2XX]][win-x64-version-6.0.2XX]
[Installer][win-x64-installer-6.0.2XX] - [Checksum][win-x64-installer-checksum-6.0.2XX]
[zip][win-x64-zip-6.0.2XX] - [Checksum][win-x64-zip-checksum-6.0.2XX] | [![][win-x64-badge-6.0.1XX]][win-x64-version-6.0.1XX]
[Installer][win-x64-installer-6.0.1XX] - [Checksum][win-x64-installer-checksum-6.0.1XX]
[zip][win-x64-zip-6.0.1XX] - [Checksum][win-x64-zip-checksum-6.0.1XX] | [![][win-x64-badge-5.0.4XX]][win-x64-version-5.0.4XX]
[Installer][win-x64-installer-5.0.4XX] - [Checksum][win-x64-installer-checksum-5.0.4XX]
[zip][win-x64-zip-5.0.4XX] - [Checksum][win-x64-zip-checksum-5.0.4XX] | [![][win-x64-badge-5.0.2XX]][win-x64-version-5.0.2XX]
[Installer][win-x64-installer-5.0.2XX] - [Checksum][win-x64-installer-checksum-5.0.2XX]
[zip][win-x64-zip-5.0.2XX] - [Checksum][win-x64-zip-checksum-5.0.2XX] | [![][win-x64-badge-3.1.4XX]][win-x64-version-3.1.4XX]
[Installer][win-x64-installer-3.1.4XX] - [Checksum][win-x64-installer-checksum-3.1.4XX]
[zip][win-x64-zip-3.1.4XX] - [Checksum][win-x64-zip-checksum-3.1.4XX] | +| **Windows x86** | [![][win-x86-badge-main]][win-x86-version-main]
[Installer][win-x86-installer-main] - [Checksum][win-x86-installer-checksum-main]
[zip][win-x86-zip-main] - [Checksum][win-x86-zip-checksum-main] | [![][win-x86-badge-7.0.1XX-preview4]][win-x86-version-7.0.1XX-preview4]
[Installer][win-x86-installer-7.0.1XX-preview4] - [Checksum][win-x86-installer-checksum-7.0.1XX-preview4]
[zip][win-x86-zip-7.0.1XX-preview4] - [Checksum][win-x86-zip-checksum-7.0.1XX-preview4] | [![][win-x86-badge-6.0.3XX]][win-x86-version-6.0.3XX]
[Installer][win-x86-installer-6.0.3XX] - [Checksum][win-x86-installer-checksum-6.0.3XX]
[zip][win-x86-zip-6.0.3XX] - [Checksum][win-x86-zip-checksum-6.0.3XX] | [![][win-x86-badge-6.0.2XX]][win-x86-version-6.0.2XX]
[Installer][win-x86-installer-6.0.2XX] - [Checksum][win-x86-installer-checksum-6.0.2XX]
[zip][win-x86-zip-6.0.2XX] - [Checksum][win-x86-zip-checksum-6.0.2XX] | [![][win-x86-badge-6.0.1XX]][win-x86-version-6.0.1XX]
[Installer][win-x86-installer-6.0.1XX] - [Checksum][win-x86-installer-checksum-6.0.1XX]
[zip][win-x86-zip-6.0.1XX] - [Checksum][win-x86-zip-checksum-6.0.1XX] | [![][win-x86-badge-5.0.4XX]][win-x86-version-5.0.4XX]
[Installer][win-x86-installer-5.0.4XX] - [Checksum][win-x86-installer-checksum-5.0.4XX]
[zip][win-x86-zip-5.0.4XX] - [Checksum][win-x86-zip-checksum-5.0.4XX] | [![][win-x86-badge-5.0.2XX]][win-x86-version-5.0.2XX]
[Installer][win-x86-installer-5.0.2XX] - [Checksum][win-x86-installer-checksum-5.0.2XX]
[zip][win-x86-zip-5.0.2XX] - [Checksum][win-x86-zip-checksum-5.0.2XX] | [![][win-x86-badge-3.1.4XX]][win-x86-version-3.1.4XX]
[Installer][win-x86-installer-3.1.4XX] - [Checksum][win-x86-installer-checksum-3.1.4XX]
[zip][win-x86-zip-3.1.4XX] - [Checksum][win-x86-zip-checksum-3.1.4XX] | | **Windows arm** | **N/A** | **N/A** | **N/A** | **N/A** | **N/A** | **N/A** | **N/A** | [![][win-arm-badge-3.1.4XX]][win-arm-version-3.1.4XX]
[zip][win-arm-zip-3.1.4XX] - [Checksum][win-arm-zip-checksum-3.1.4XX] | -| **Windows arm64** | [![][win-arm64-badge-main]][win-arm64-version-main]
[Installer][win-arm64-installer-main] - [Checksum][win-arm64-installer-checksum-main]
[zip][win-arm64-zip-main] | [![][win-arm64-badge-7.0.1XX-preview3]][win-arm64-version-7.0.1XX-preview3]
[Installer][win-arm64-installer-7.0.1XX-preview3] - [Checksum][win-arm64-installer-checksum-7.0.1XX-preview3]
[zip][win-arm64-zip-7.0.1XX-preview3] | [![][win-arm64-badge-6.0.3XX]][win-arm64-version-6.0.3XX]
[Installer][win-arm64-installer-6.0.3XX] - [Checksum][win-arm64-installer-checksum-6.0.3XX]
[zip][win-arm64-zip-6.0.3XX] | [![][win-arm64-badge-6.0.2XX]][win-arm64-version-6.0.2XX]
[Installer][win-arm64-installer-6.0.2XX] - [Checksum][win-arm64-installer-checksum-6.0.2XX]
[zip][win-arm64-zip-6.0.2XX] | [![][win-arm64-badge-6.0.1XX]][win-arm64-version-6.0.1XX]
[Installer][win-arm64-installer-6.0.1XX] - [Checksum][win-arm64-installer-checksum-6.0.1XX]
[zip][win-arm64-zip-6.0.1XX] | [![][win-arm64-badge-5.0.4XX]][win-arm64-version-5.0.4XX]
[Installer][win-arm64-installer-5.0.4XX] - [Checksum][win-arm64-installer-checksum-5.0.4XX]
[zip][win-arm64-zip-5.0.4XX] | [![][win-arm64-badge-5.0.2XX]][win-arm64-version-5.0.2XX]
[Installer][win-arm64-installer-5.0.2XX] - [Checksum][win-arm64-installer-checksum-5.0.2XX]
[zip][win-arm64-zip-5.0.2XX] | **N/A** | -| **macOS x64** | [![][osx-x64-badge-main]][osx-x64-version-main]
[Installer][osx-x64-installer-main] - [Checksum][osx-x64-installer-checksum-main]
[tar.gz][osx-x64-targz-main] - [Checksum][osx-x64-targz-checksum-main] | [![][osx-x64-badge-7.0.1XX-preview3]][osx-x64-version-7.0.1XX-preview3]
[Installer][osx-x64-installer-7.0.1XX-preview3] - [Checksum][osx-x64-installer-checksum-7.0.1XX-preview3]
[tar.gz][osx-x64-targz-7.0.1XX-preview3] - [Checksum][osx-x64-targz-checksum-7.0.1XX-preview3] | [![][osx-x64-badge-6.0.3XX]][osx-x64-version-6.0.3XX]
[Installer][osx-x64-installer-6.0.3XX] - [Checksum][osx-x64-installer-checksum-6.0.3XX]
[tar.gz][osx-x64-targz-6.0.3XX] - [Checksum][osx-x64-targz-checksum-6.0.3XX] | [![][osx-x64-badge-6.0.2XX]][osx-x64-version-6.0.2XX]
[Installer][osx-x64-installer-6.0.2XX] - [Checksum][osx-x64-installer-checksum-6.0.2XX]
[tar.gz][osx-x64-targz-6.0.2XX] - [Checksum][osx-x64-targz-checksum-6.0.2XX] | [![][osx-x64-badge-6.0.1XX]][osx-x64-version-6.0.1XX]
[Installer][osx-x64-installer-6.0.1XX] - [Checksum][osx-x64-installer-checksum-6.0.1XX]
[tar.gz][osx-x64-targz-6.0.1XX] - [Checksum][osx-x64-targz-checksum-6.0.1XX] | [![][osx-x64-badge-5.0.4XX]][osx-x64-version-5.0.4XX]
[Installer][osx-x64-installer-5.0.4XX] - [Checksum][osx-x64-installer-checksum-5.0.4XX]
[tar.gz][osx-x64-targz-5.0.4XX] - [Checksum][osx-x64-targz-checksum-5.0.4XX] | [![][osx-x64-badge-5.0.2XX]][osx-x64-version-5.0.2XX]
[Installer][osx-x64-installer-5.0.2XX] - [Checksum][osx-x64-installer-checksum-5.0.2XX]
[tar.gz][osx-x64-targz-5.0.2XX] - [Checksum][osx-x64-targz-checksum-5.0.2XX] | [![][osx-x64-badge-3.1.4XX]][osx-x64-version-3.1.4XX]
[Installer][osx-x64-installer-3.1.4XX] - [Checksum][osx-x64-installer-checksum-3.1.4XX]
[tar.gz][osx-x64-targz-3.1.4XX] - [Checksum][osx-x64-targz-checksum-3.1.4XX] | -| **macOS arm64** | [![][osx-arm64-badge-main]][osx-arm64-version-main]
[Installer][osx-arm64-installer-main] - [Checksum][osx-arm64-installer-checksum-main]
[tar.gz][osx-arm64-targz-main] - [Checksum][osx-arm64-targz-checksum-main] | [![][osx-arm64-badge-7.0.1XX-preview3]][osx-arm64-version-7.0.1XX-preview3]
[Installer][osx-arm64-installer-7.0.1XX-preview3] - [Checksum][osx-arm64-installer-checksum-7.0.1XX-preview3]
[tar.gz][osx-arm64-targz-7.0.1XX-preview3] - [Checksum][osx-arm64-targz-checksum-7.0.1XX-preview3] | [![][osx-arm64-badge-6.0.3XX]][osx-arm64-version-6.0.3XX]
[Installer][osx-arm64-installer-6.0.3XX] - [Checksum][osx-arm64-installer-checksum-6.0.3XX]
[tar.gz][osx-arm64-targz-6.0.3XX] - [Checksum][osx-arm64-targz-checksum-6.0.3XX] | [![][osx-arm64-badge-6.0.2XX]][osx-arm64-version-6.0.2XX]
[Installer][osx-arm64-installer-6.0.2XX] - [Checksum][osx-arm64-installer-checksum-6.0.2XX]
[tar.gz][osx-arm64-targz-6.0.2XX] - [Checksum][osx-arm64-targz-checksum-6.0.2XX] | [![][osx-arm64-badge-6.0.1XX]][osx-arm64-version-6.0.1XX]
[Installer][osx-arm64-installer-6.0.1XX] - [Checksum][osx-arm64-installer-checksum-6.0.1XX]
[tar.gz][osx-arm64-targz-6.0.1XX] - [Checksum][osx-arm64-targz-checksum-6.0.1XX] | **N/A** | **N/A** | **N/A** | -| **Linux x64** | [![][linux-badge-main]][linux-version-main]
[DEB Installer][linux-DEB-installer-main] - [Checksum][linux-DEB-installer-checksum-main]
[RPM Installer][linux-RPM-installer-main] - [Checksum][linux-RPM-installer-checksum-main]
_see installer note below_1
[tar.gz][linux-targz-main] - [Checksum][linux-targz-checksum-main] | [![][linux-badge-7.0.1XX-preview3]][linux-version-7.0.1XX-preview3]
[DEB Installer][linux-DEB-installer-7.0.1XX-preview3] - [Checksum][linux-DEB-installer-checksum-7.0.1XX-preview3]
[RPM Installer][linux-RPM-installer-7.0.1XX-preview3] - [Checksum][linux-RPM-installer-checksum-7.0.1XX-preview3]
_see installer note below_1
[tar.gz][linux-targz-7.0.1XX-preview3] - [Checksum][linux-targz-checksum-7.0.1XX-preview3] | [![][linux-badge-6.0.3XX]][linux-version-6.0.3XX]
[DEB Installer][linux-DEB-installer-6.0.3XX] - [Checksum][linux-DEB-installer-checksum-6.0.3XX]
[RPM Installer][linux-RPM-installer-6.0.3XX] - [Checksum][linux-RPM-installer-checksum-6.0.3XX]
_see installer note below_1
[tar.gz][linux-targz-6.0.3XX] - [Checksum][linux-targz-checksum-6.0.3XX] | [![][linux-badge-6.0.2XX]][linux-version-6.0.2XX]
[DEB Installer][linux-DEB-installer-6.0.2XX] - [Checksum][linux-DEB-installer-checksum-6.0.2XX]
[RPM Installer][linux-RPM-installer-6.0.2XX] - [Checksum][linux-RPM-installer-checksum-6.0.2XX]
_see installer note below_1
[tar.gz][linux-targz-6.0.2XX] - [Checksum][linux-targz-checksum-6.0.2XX] | [![][linux-badge-6.0.1XX]][linux-version-6.0.1XX]
[DEB Installer][linux-DEB-installer-6.0.1XX] - [Checksum][linux-DEB-installer-checksum-6.0.1XX]
[RPM Installer][linux-RPM-installer-6.0.1XX] - [Checksum][linux-RPM-installer-checksum-6.0.1XX]
_see installer note below_1
[tar.gz][linux-targz-6.0.1XX] - [Checksum][linux-targz-checksum-6.0.1XX] | [![][linux-badge-5.0.4XX]][linux-version-5.0.4XX]
[DEB Installer][linux-DEB-installer-5.0.4XX] - [Checksum][linux-DEB-installer-checksum-5.0.4XX]
[RPM Installer][linux-RPM-installer-5.0.4XX] - [Checksum][linux-RPM-installer-checksum-5.0.4XX]
_see installer note below_1
[tar.gz][linux-targz-5.0.4XX] - [Checksum][linux-targz-checksum-5.0.4XX] | [![][linux-badge-5.0.2XX]][linux-version-5.0.2XX]
[DEB Installer][linux-DEB-installer-5.0.2XX] - [Checksum][linux-DEB-installer-checksum-5.0.2XX]
[RPM Installer][linux-RPM-installer-5.0.2XX] - [Checksum][linux-RPM-installer-checksum-5.0.2XX]
_see installer note below_1
[tar.gz][linux-targz-5.0.2XX] - [Checksum][linux-targz-checksum-5.0.2XX] | [![][linux-badge-3.1.4XX]][linux-version-3.1.4XX]
[DEB Installer][linux-DEB-installer-3.1.4XX] - [Checksum][linux-DEB-installer-checksum-3.1.4XX]
[RPM Installer][linux-RPM-installer-3.1.4XX] - [Checksum][linux-RPM-installer-checksum-3.1.4XX]
_see installer note below_1
[tar.gz][linux-targz-3.1.4XX] - [Checksum][linux-targz-checksum-3.1.4XX] | -| **Linux arm** | [![][linux-arm-badge-main]][linux-arm-version-main]
[tar.gz][linux-arm-targz-main] - [Checksum][linux-arm-targz-checksum-main] | [![][linux-arm-badge-7.0.1XX-preview3]][linux-arm-version-7.0.1XX-preview3]
[tar.gz][linux-arm-targz-7.0.1XX-preview3] - [Checksum][linux-arm-targz-checksum-7.0.1XX-preview3] | [![][linux-arm-badge-6.0.3XX]][linux-arm-version-6.0.3XX]
[tar.gz][linux-arm-targz-6.0.3XX] - [Checksum][linux-arm-targz-checksum-6.0.3XX] | [![][linux-arm-badge-6.0.2XX]][linux-arm-version-6.0.2XX]
[tar.gz][linux-arm-targz-6.0.2XX] - [Checksum][linux-arm-targz-checksum-6.0.2XX] | [![][linux-arm-badge-6.0.1XX]][linux-arm-version-6.0.1XX]
[tar.gz][linux-arm-targz-6.0.1XX] - [Checksum][linux-arm-targz-checksum-6.0.1XX] | [![][linux-arm-badge-5.0.4XX]][linux-arm-version-5.0.4XX]
[tar.gz][linux-arm-targz-5.0.4XX] - [Checksum][linux-arm-targz-checksum-5.0.4XX] | [![][linux-arm-badge-5.0.2XX]][linux-arm-version-5.0.2XX]
[tar.gz][linux-arm-targz-5.0.2XX] - [Checksum][linux-arm-targz-checksum-5.0.2XX] | [![][linux-arm-badge-3.1.4XX]][linux-arm-version-3.1.4XX]
[tar.gz][linux-arm-targz-3.1.4XX] - [Checksum][linux-arm-targz-checksum-3.1.4XX] | -| **Linux arm64** | [![][linux-arm64-badge-main]][linux-arm64-version-main]
[tar.gz][linux-arm64-targz-main] - [Checksum][linux-arm64-targz-checksum-main] | [![][linux-arm64-badge-7.0.1XX-preview3]][linux-arm64-version-7.0.1XX-preview3]
[tar.gz][linux-arm64-targz-7.0.1XX-preview3] - [Checksum][linux-arm64-targz-checksum-7.0.1XX-preview3] | [![][linux-arm64-badge-6.0.3XX]][linux-arm64-version-6.0.3XX]
[tar.gz][linux-arm64-targz-6.0.3XX] - [Checksum][linux-arm64-targz-checksum-6.0.3XX] | [![][linux-arm64-badge-6.0.2XX]][linux-arm64-version-6.0.2XX]
[tar.gz][linux-arm64-targz-6.0.2XX] - [Checksum][linux-arm64-targz-checksum-6.0.2XX] | [![][linux-arm64-badge-6.0.1XX]][linux-arm64-version-6.0.1XX]
[tar.gz][linux-arm64-targz-6.0.1XX] - [Checksum][linux-arm64-targz-checksum-6.0.1XX] | [![][linux-arm64-badge-5.0.4XX]][linux-arm64-version-5.0.4XX]
[tar.gz][linux-arm64-targz-5.0.4XX] - [Checksum][linux-arm64-targz-checksum-5.0.4XX] | [![][linux-arm64-badge-5.0.2XX]][linux-arm64-version-5.0.2XX]
[tar.gz][linux-arm64-targz-5.0.2XX] - [Checksum][linux-arm64-targz-checksum-5.0.2XX] | [![][linux-arm64-badge-3.1.4XX]][linux-arm64-version-3.1.4XX]
[tar.gz][linux-arm64-targz-3.1.4XX] - [Checksum][linux-arm64-targz-checksum-3.1.4XX] | -| **Linux-musl-x64** | [![][linux-musl-x64-badge-main]][linux-musl-x64-version-main]
[tar.gz][linux-musl-x64-targz-main] - [Checksum][linux-musl-x64-targz-checksum-main] | [![][linux-musl-x64-badge-7.0.1XX-preview3]][linux-musl-x64-version-7.0.1XX-preview3]
[tar.gz][linux-musl-x64-targz-7.0.1XX-preview3] - [Checksum][linux-musl-x64-targz-checksum-7.0.1XX-preview3] | [![][linux-musl-x64-badge-6.0.3XX]][linux-musl-x64-version-6.0.3XX]
[tar.gz][linux-musl-x64-targz-6.0.3XX] - [Checksum][linux-musl-x64-targz-checksum-6.0.3XX] | [![][linux-musl-x64-badge-6.0.2XX]][linux-musl-x64-version-6.0.2XX]
[tar.gz][linux-musl-x64-targz-6.0.2XX] - [Checksum][linux-musl-x64-targz-checksum-6.0.2XX] | [![][linux-musl-x64-badge-6.0.1XX]][linux-musl-x64-version-6.0.1XX]
[tar.gz][linux-musl-x64-targz-6.0.1XX] - [Checksum][linux-musl-x64-targz-checksum-6.0.1XX] | [![][linux-musl-x64-badge-5.0.4XX]][linux-musl-x64-version-5.0.4XX]
[tar.gz][linux-musl-x64-targz-5.0.4XX] - [Checksum][linux-musl-x64-targz-checksum-5.0.4XX] | [![][linux-musl-x64-badge-5.0.2XX]][linux-musl-x64-version-5.0.2XX]
[tar.gz][linux-musl-x64-targz-5.0.2XX] - [Checksum][linux-musl-x64-targz-checksum-5.0.2XX] | [![][linux-musl-x64-badge-3.1.4XX]][linux-musl-x64-version-3.1.4XX]
[tar.gz][linux-musl-x64-targz-3.1.4XX] - [Checksum][linux-musl-x64-targz-checksum-3.1.4XX] | -| **Linux-musl-arm** | [![][linux-musl-arm-badge-main]][linux-musl-arm-version-main]
[tar.gz][linux-musl-arm-targz-main] - [Checksum][linux-musl-arm-targz-checksum-main] | [![][linux-musl-arm-badge-7.0.1XX-preview3]][linux-musl-arm-version-7.0.1XX-preview3]
[tar.gz][linux-musl-arm-targz-7.0.1XX-preview3] - [Checksum][linux-musl-arm-targz-checksum-7.0.1XX-preview3] | [![][linux-musl-arm-badge-6.0.3XX]][linux-musl-arm-version-6.0.3XX]
[tar.gz][linux-musl-arm-targz-6.0.3XX] - [Checksum][linux-musl-arm-targz-checksum-6.0.3XX] | [![][linux-musl-arm-badge-6.0.2XX]][linux-musl-arm-version-6.0.2XX]
[tar.gz][linux-musl-arm-targz-6.0.2XX] - [Checksum][linux-musl-arm-targz-checksum-6.0.2XX] | [![][linux-musl-arm-badge-6.0.1XX]][linux-musl-arm-version-6.0.1XX]
[tar.gz][linux-musl-arm-targz-6.0.1XX] - [Checksum][linux-musl-arm-targz-checksum-6.0.1XX] | [![][linux-musl-arm-badge-5.0.4XX]][linux-musl-arm-version-5.0.4XX]
[tar.gz][linux-musl-arm-targz-5.0.4XX] - [Checksum][linux-musl-arm-targz-checksum-5.0.4XX] | [![][linux-musl-arm-badge-5.0.2XX]][linux-musl-arm-version-5.0.2XX]
[tar.gz][linux-musl-arm-targz-5.0.2XX] - [Checksum][linux-musl-arm-targz-checksum-5.0.2XX] | **N/A** | -| **Linux-musl-arm64** | [![][linux-musl-arm64-badge-main]][linux-musl-arm64-version-main]
[tar.gz][linux-musl-arm64-targz-main] - [Checksum][linux-musl-arm64-targz-checksum-main] | [![][linux-musl-arm64-badge-7.0.1XX-preview3]][linux-musl-arm64-version-7.0.1XX-preview3]
[tar.gz][linux-musl-arm64-targz-7.0.1XX-preview3] - [Checksum][linux-musl-arm64-targz-checksum-7.0.1XX-preview3] | [![][linux-musl-arm64-badge-6.0.3XX]][linux-musl-arm64-version-6.0.3XX]
[tar.gz][linux-musl-arm64-targz-6.0.3XX] - [Checksum][linux-musl-arm64-targz-checksum-6.0.3XX] | [![][linux-musl-arm64-badge-6.0.2XX]][linux-musl-arm64-version-6.0.2XX]
[tar.gz][linux-musl-arm64-targz-6.0.2XX] - [Checksum][linux-musl-arm64-targz-checksum-6.0.2XX] | [![][linux-musl-arm64-badge-6.0.1XX]][linux-musl-arm64-version-6.0.1XX]
[tar.gz][linux-musl-arm64-targz-6.0.1XX] - [Checksum][linux-musl-arm64-targz-checksum-6.0.1XX] | [![][linux-musl-arm64-badge-5.0.4XX]][linux-musl-arm64-version-5.0.4XX]
[tar.gz][linux-musl-arm64-targz-5.0.4XX] - [Checksum][linux-musl-arm64-targz-checksum-5.0.4XX] | [![][linux-musl-arm64-badge-5.0.2XX]][linux-musl-arm64-version-5.0.2XX]
[tar.gz][linux-musl-arm64-targz-5.0.2XX] - [Checksum][linux-musl-arm64-targz-checksum-5.0.2XX] | **N/A** | +| **Windows arm64** | [![][win-arm64-badge-main]][win-arm64-version-main]
[Installer][win-arm64-installer-main] - [Checksum][win-arm64-installer-checksum-main]
[zip][win-arm64-zip-main] | [![][win-arm64-badge-7.0.1XX-preview4]][win-arm64-version-7.0.1XX-preview4]
[Installer][win-arm64-installer-7.0.1XX-preview4] - [Checksum][win-arm64-installer-checksum-7.0.1XX-preview4]
[zip][win-arm64-zip-7.0.1XX-preview4] | [![][win-arm64-badge-6.0.3XX]][win-arm64-version-6.0.3XX]
[Installer][win-arm64-installer-6.0.3XX] - [Checksum][win-arm64-installer-checksum-6.0.3XX]
[zip][win-arm64-zip-6.0.3XX] | [![][win-arm64-badge-6.0.2XX]][win-arm64-version-6.0.2XX]
[Installer][win-arm64-installer-6.0.2XX] - [Checksum][win-arm64-installer-checksum-6.0.2XX]
[zip][win-arm64-zip-6.0.2XX] | [![][win-arm64-badge-6.0.1XX]][win-arm64-version-6.0.1XX]
[Installer][win-arm64-installer-6.0.1XX] - [Checksum][win-arm64-installer-checksum-6.0.1XX]
[zip][win-arm64-zip-6.0.1XX] | [![][win-arm64-badge-5.0.4XX]][win-arm64-version-5.0.4XX]
[Installer][win-arm64-installer-5.0.4XX] - [Checksum][win-arm64-installer-checksum-5.0.4XX]
[zip][win-arm64-zip-5.0.4XX] | [![][win-arm64-badge-5.0.2XX]][win-arm64-version-5.0.2XX]
[Installer][win-arm64-installer-5.0.2XX] - [Checksum][win-arm64-installer-checksum-5.0.2XX]
[zip][win-arm64-zip-5.0.2XX] | **N/A** | +| **macOS x64** | [![][osx-x64-badge-main]][osx-x64-version-main]
[Installer][osx-x64-installer-main] - [Checksum][osx-x64-installer-checksum-main]
[tar.gz][osx-x64-targz-main] - [Checksum][osx-x64-targz-checksum-main] | [![][osx-x64-badge-7.0.1XX-preview4]][osx-x64-version-7.0.1XX-preview4]
[Installer][osx-x64-installer-7.0.1XX-preview4] - [Checksum][osx-x64-installer-checksum-7.0.1XX-preview4]
[tar.gz][osx-x64-targz-7.0.1XX-preview4] - [Checksum][osx-x64-targz-checksum-7.0.1XX-preview4] | [![][osx-x64-badge-6.0.3XX]][osx-x64-version-6.0.3XX]
[Installer][osx-x64-installer-6.0.3XX] - [Checksum][osx-x64-installer-checksum-6.0.3XX]
[tar.gz][osx-x64-targz-6.0.3XX] - [Checksum][osx-x64-targz-checksum-6.0.3XX] | [![][osx-x64-badge-6.0.2XX]][osx-x64-version-6.0.2XX]
[Installer][osx-x64-installer-6.0.2XX] - [Checksum][osx-x64-installer-checksum-6.0.2XX]
[tar.gz][osx-x64-targz-6.0.2XX] - [Checksum][osx-x64-targz-checksum-6.0.2XX] | [![][osx-x64-badge-6.0.1XX]][osx-x64-version-6.0.1XX]
[Installer][osx-x64-installer-6.0.1XX] - [Checksum][osx-x64-installer-checksum-6.0.1XX]
[tar.gz][osx-x64-targz-6.0.1XX] - [Checksum][osx-x64-targz-checksum-6.0.1XX] | [![][osx-x64-badge-5.0.4XX]][osx-x64-version-5.0.4XX]
[Installer][osx-x64-installer-5.0.4XX] - [Checksum][osx-x64-installer-checksum-5.0.4XX]
[tar.gz][osx-x64-targz-5.0.4XX] - [Checksum][osx-x64-targz-checksum-5.0.4XX] | [![][osx-x64-badge-5.0.2XX]][osx-x64-version-5.0.2XX]
[Installer][osx-x64-installer-5.0.2XX] - [Checksum][osx-x64-installer-checksum-5.0.2XX]
[tar.gz][osx-x64-targz-5.0.2XX] - [Checksum][osx-x64-targz-checksum-5.0.2XX] | [![][osx-x64-badge-3.1.4XX]][osx-x64-version-3.1.4XX]
[Installer][osx-x64-installer-3.1.4XX] - [Checksum][osx-x64-installer-checksum-3.1.4XX]
[tar.gz][osx-x64-targz-3.1.4XX] - [Checksum][osx-x64-targz-checksum-3.1.4XX] | +| **macOS arm64** | [![][osx-arm64-badge-main]][osx-arm64-version-main]
[Installer][osx-arm64-installer-main] - [Checksum][osx-arm64-installer-checksum-main]
[tar.gz][osx-arm64-targz-main] - [Checksum][osx-arm64-targz-checksum-main] | [![][osx-arm64-badge-7.0.1XX-preview4]][osx-arm64-version-7.0.1XX-preview4]
[Installer][osx-arm64-installer-7.0.1XX-preview4] - [Checksum][osx-arm64-installer-checksum-7.0.1XX-preview4]
[tar.gz][osx-arm64-targz-7.0.1XX-preview4] - [Checksum][osx-arm64-targz-checksum-7.0.1XX-preview4] | [![][osx-arm64-badge-6.0.3XX]][osx-arm64-version-6.0.3XX]
[Installer][osx-arm64-installer-6.0.3XX] - [Checksum][osx-arm64-installer-checksum-6.0.3XX]
[tar.gz][osx-arm64-targz-6.0.3XX] - [Checksum][osx-arm64-targz-checksum-6.0.3XX] | [![][osx-arm64-badge-6.0.2XX]][osx-arm64-version-6.0.2XX]
[Installer][osx-arm64-installer-6.0.2XX] - [Checksum][osx-arm64-installer-checksum-6.0.2XX]
[tar.gz][osx-arm64-targz-6.0.2XX] - [Checksum][osx-arm64-targz-checksum-6.0.2XX] | [![][osx-arm64-badge-6.0.1XX]][osx-arm64-version-6.0.1XX]
[Installer][osx-arm64-installer-6.0.1XX] - [Checksum][osx-arm64-installer-checksum-6.0.1XX]
[tar.gz][osx-arm64-targz-6.0.1XX] - [Checksum][osx-arm64-targz-checksum-6.0.1XX] | **N/A** | **N/A** | **N/A** | +| **Linux x64** | [![][linux-badge-main]][linux-version-main]
[DEB Installer][linux-DEB-installer-main] - [Checksum][linux-DEB-installer-checksum-main]
[RPM Installer][linux-RPM-installer-main] - [Checksum][linux-RPM-installer-checksum-main]
_see installer note below_1
[tar.gz][linux-targz-main] - [Checksum][linux-targz-checksum-main] | [![][linux-badge-7.0.1XX-preview4]][linux-version-7.0.1XX-preview4]
[DEB Installer][linux-DEB-installer-7.0.1XX-preview4] - [Checksum][linux-DEB-installer-checksum-7.0.1XX-preview4]
[RPM Installer][linux-RPM-installer-7.0.1XX-preview4] - [Checksum][linux-RPM-installer-checksum-7.0.1XX-preview4]
_see installer note below_1
[tar.gz][linux-targz-7.0.1XX-preview4] - [Checksum][linux-targz-checksum-7.0.1XX-preview4] | [![][linux-badge-6.0.3XX]][linux-version-6.0.3XX]
[DEB Installer][linux-DEB-installer-6.0.3XX] - [Checksum][linux-DEB-installer-checksum-6.0.3XX]
[RPM Installer][linux-RPM-installer-6.0.3XX] - [Checksum][linux-RPM-installer-checksum-6.0.3XX]
_see installer note below_1
[tar.gz][linux-targz-6.0.3XX] - [Checksum][linux-targz-checksum-6.0.3XX] | [![][linux-badge-6.0.2XX]][linux-version-6.0.2XX]
[DEB Installer][linux-DEB-installer-6.0.2XX] - [Checksum][linux-DEB-installer-checksum-6.0.2XX]
[RPM Installer][linux-RPM-installer-6.0.2XX] - [Checksum][linux-RPM-installer-checksum-6.0.2XX]
_see installer note below_1
[tar.gz][linux-targz-6.0.2XX] - [Checksum][linux-targz-checksum-6.0.2XX] | [![][linux-badge-6.0.1XX]][linux-version-6.0.1XX]
[DEB Installer][linux-DEB-installer-6.0.1XX] - [Checksum][linux-DEB-installer-checksum-6.0.1XX]
[RPM Installer][linux-RPM-installer-6.0.1XX] - [Checksum][linux-RPM-installer-checksum-6.0.1XX]
_see installer note below_1
[tar.gz][linux-targz-6.0.1XX] - [Checksum][linux-targz-checksum-6.0.1XX] | [![][linux-badge-5.0.4XX]][linux-version-5.0.4XX]
[DEB Installer][linux-DEB-installer-5.0.4XX] - [Checksum][linux-DEB-installer-checksum-5.0.4XX]
[RPM Installer][linux-RPM-installer-5.0.4XX] - [Checksum][linux-RPM-installer-checksum-5.0.4XX]
_see installer note below_1
[tar.gz][linux-targz-5.0.4XX] - [Checksum][linux-targz-checksum-5.0.4XX] | [![][linux-badge-5.0.2XX]][linux-version-5.0.2XX]
[DEB Installer][linux-DEB-installer-5.0.2XX] - [Checksum][linux-DEB-installer-checksum-5.0.2XX]
[RPM Installer][linux-RPM-installer-5.0.2XX] - [Checksum][linux-RPM-installer-checksum-5.0.2XX]
_see installer note below_1
[tar.gz][linux-targz-5.0.2XX] - [Checksum][linux-targz-checksum-5.0.2XX] | [![][linux-badge-3.1.4XX]][linux-version-3.1.4XX]
[DEB Installer][linux-DEB-installer-3.1.4XX] - [Checksum][linux-DEB-installer-checksum-3.1.4XX]
[RPM Installer][linux-RPM-installer-3.1.4XX] - [Checksum][linux-RPM-installer-checksum-3.1.4XX]
_see installer note below_1
[tar.gz][linux-targz-3.1.4XX] - [Checksum][linux-targz-checksum-3.1.4XX] | +| **Linux arm** | [![][linux-arm-badge-main]][linux-arm-version-main]
[tar.gz][linux-arm-targz-main] - [Checksum][linux-arm-targz-checksum-main] | [![][linux-arm-badge-7.0.1XX-preview4]][linux-arm-version-7.0.1XX-preview4]
[tar.gz][linux-arm-targz-7.0.1XX-preview4] - [Checksum][linux-arm-targz-checksum-7.0.1XX-preview4] | [![][linux-arm-badge-6.0.3XX]][linux-arm-version-6.0.3XX]
[tar.gz][linux-arm-targz-6.0.3XX] - [Checksum][linux-arm-targz-checksum-6.0.3XX] | [![][linux-arm-badge-6.0.2XX]][linux-arm-version-6.0.2XX]
[tar.gz][linux-arm-targz-6.0.2XX] - [Checksum][linux-arm-targz-checksum-6.0.2XX] | [![][linux-arm-badge-6.0.1XX]][linux-arm-version-6.0.1XX]
[tar.gz][linux-arm-targz-6.0.1XX] - [Checksum][linux-arm-targz-checksum-6.0.1XX] | [![][linux-arm-badge-5.0.4XX]][linux-arm-version-5.0.4XX]
[tar.gz][linux-arm-targz-5.0.4XX] - [Checksum][linux-arm-targz-checksum-5.0.4XX] | [![][linux-arm-badge-5.0.2XX]][linux-arm-version-5.0.2XX]
[tar.gz][linux-arm-targz-5.0.2XX] - [Checksum][linux-arm-targz-checksum-5.0.2XX] | [![][linux-arm-badge-3.1.4XX]][linux-arm-version-3.1.4XX]
[tar.gz][linux-arm-targz-3.1.4XX] - [Checksum][linux-arm-targz-checksum-3.1.4XX] | +| **Linux arm64** | [![][linux-arm64-badge-main]][linux-arm64-version-main]
[tar.gz][linux-arm64-targz-main] - [Checksum][linux-arm64-targz-checksum-main] | [![][linux-arm64-badge-7.0.1XX-preview4]][linux-arm64-version-7.0.1XX-preview4]
[tar.gz][linux-arm64-targz-7.0.1XX-preview4] - [Checksum][linux-arm64-targz-checksum-7.0.1XX-preview4] | [![][linux-arm64-badge-6.0.3XX]][linux-arm64-version-6.0.3XX]
[tar.gz][linux-arm64-targz-6.0.3XX] - [Checksum][linux-arm64-targz-checksum-6.0.3XX] | [![][linux-arm64-badge-6.0.2XX]][linux-arm64-version-6.0.2XX]
[tar.gz][linux-arm64-targz-6.0.2XX] - [Checksum][linux-arm64-targz-checksum-6.0.2XX] | [![][linux-arm64-badge-6.0.1XX]][linux-arm64-version-6.0.1XX]
[tar.gz][linux-arm64-targz-6.0.1XX] - [Checksum][linux-arm64-targz-checksum-6.0.1XX] | [![][linux-arm64-badge-5.0.4XX]][linux-arm64-version-5.0.4XX]
[tar.gz][linux-arm64-targz-5.0.4XX] - [Checksum][linux-arm64-targz-checksum-5.0.4XX] | [![][linux-arm64-badge-5.0.2XX]][linux-arm64-version-5.0.2XX]
[tar.gz][linux-arm64-targz-5.0.2XX] - [Checksum][linux-arm64-targz-checksum-5.0.2XX] | [![][linux-arm64-badge-3.1.4XX]][linux-arm64-version-3.1.4XX]
[tar.gz][linux-arm64-targz-3.1.4XX] - [Checksum][linux-arm64-targz-checksum-3.1.4XX] | +| **Linux-musl-x64** | [![][linux-musl-x64-badge-main]][linux-musl-x64-version-main]
[tar.gz][linux-musl-x64-targz-main] - [Checksum][linux-musl-x64-targz-checksum-main] | [![][linux-musl-x64-badge-7.0.1XX-preview4]][linux-musl-x64-version-7.0.1XX-preview4]
[tar.gz][linux-musl-x64-targz-7.0.1XX-preview4] - [Checksum][linux-musl-x64-targz-checksum-7.0.1XX-preview4] | [![][linux-musl-x64-badge-6.0.3XX]][linux-musl-x64-version-6.0.3XX]
[tar.gz][linux-musl-x64-targz-6.0.3XX] - [Checksum][linux-musl-x64-targz-checksum-6.0.3XX] | [![][linux-musl-x64-badge-6.0.2XX]][linux-musl-x64-version-6.0.2XX]
[tar.gz][linux-musl-x64-targz-6.0.2XX] - [Checksum][linux-musl-x64-targz-checksum-6.0.2XX] | [![][linux-musl-x64-badge-6.0.1XX]][linux-musl-x64-version-6.0.1XX]
[tar.gz][linux-musl-x64-targz-6.0.1XX] - [Checksum][linux-musl-x64-targz-checksum-6.0.1XX] | [![][linux-musl-x64-badge-5.0.4XX]][linux-musl-x64-version-5.0.4XX]
[tar.gz][linux-musl-x64-targz-5.0.4XX] - [Checksum][linux-musl-x64-targz-checksum-5.0.4XX] | [![][linux-musl-x64-badge-5.0.2XX]][linux-musl-x64-version-5.0.2XX]
[tar.gz][linux-musl-x64-targz-5.0.2XX] - [Checksum][linux-musl-x64-targz-checksum-5.0.2XX] | [![][linux-musl-x64-badge-3.1.4XX]][linux-musl-x64-version-3.1.4XX]
[tar.gz][linux-musl-x64-targz-3.1.4XX] - [Checksum][linux-musl-x64-targz-checksum-3.1.4XX] | +| **Linux-musl-arm** | [![][linux-musl-arm-badge-main]][linux-musl-arm-version-main]
[tar.gz][linux-musl-arm-targz-main] - [Checksum][linux-musl-arm-targz-checksum-main] | [![][linux-musl-arm-badge-7.0.1XX-preview4]][linux-musl-arm-version-7.0.1XX-preview4]
[tar.gz][linux-musl-arm-targz-7.0.1XX-preview4] - [Checksum][linux-musl-arm-targz-checksum-7.0.1XX-preview4] | [![][linux-musl-arm-badge-6.0.3XX]][linux-musl-arm-version-6.0.3XX]
[tar.gz][linux-musl-arm-targz-6.0.3XX] - [Checksum][linux-musl-arm-targz-checksum-6.0.3XX] | [![][linux-musl-arm-badge-6.0.2XX]][linux-musl-arm-version-6.0.2XX]
[tar.gz][linux-musl-arm-targz-6.0.2XX] - [Checksum][linux-musl-arm-targz-checksum-6.0.2XX] | [![][linux-musl-arm-badge-6.0.1XX]][linux-musl-arm-version-6.0.1XX]
[tar.gz][linux-musl-arm-targz-6.0.1XX] - [Checksum][linux-musl-arm-targz-checksum-6.0.1XX] | [![][linux-musl-arm-badge-5.0.4XX]][linux-musl-arm-version-5.0.4XX]
[tar.gz][linux-musl-arm-targz-5.0.4XX] - [Checksum][linux-musl-arm-targz-checksum-5.0.4XX] | [![][linux-musl-arm-badge-5.0.2XX]][linux-musl-arm-version-5.0.2XX]
[tar.gz][linux-musl-arm-targz-5.0.2XX] - [Checksum][linux-musl-arm-targz-checksum-5.0.2XX] | **N/A** | +| **Linux-musl-arm64** | [![][linux-musl-arm64-badge-main]][linux-musl-arm64-version-main]
[tar.gz][linux-musl-arm64-targz-main] - [Checksum][linux-musl-arm64-targz-checksum-main] | [![][linux-musl-arm64-badge-7.0.1XX-preview4]][linux-musl-arm64-version-7.0.1XX-preview4]
[tar.gz][linux-musl-arm64-targz-7.0.1XX-preview4] - [Checksum][linux-musl-arm64-targz-checksum-7.0.1XX-preview4] | [![][linux-musl-arm64-badge-6.0.3XX]][linux-musl-arm64-version-6.0.3XX]
[tar.gz][linux-musl-arm64-targz-6.0.3XX] - [Checksum][linux-musl-arm64-targz-checksum-6.0.3XX] | [![][linux-musl-arm64-badge-6.0.2XX]][linux-musl-arm64-version-6.0.2XX]
[tar.gz][linux-musl-arm64-targz-6.0.2XX] - [Checksum][linux-musl-arm64-targz-checksum-6.0.2XX] | [![][linux-musl-arm64-badge-6.0.1XX]][linux-musl-arm64-version-6.0.1XX]
[tar.gz][linux-musl-arm64-targz-6.0.1XX] - [Checksum][linux-musl-arm64-targz-checksum-6.0.1XX] | [![][linux-musl-arm64-badge-5.0.4XX]][linux-musl-arm64-version-5.0.4XX]
[tar.gz][linux-musl-arm64-targz-5.0.4XX] - [Checksum][linux-musl-arm64-targz-checksum-5.0.4XX] | [![][linux-musl-arm64-badge-5.0.2XX]][linux-musl-arm64-version-5.0.2XX]
[tar.gz][linux-musl-arm64-targz-5.0.2XX] - [Checksum][linux-musl-arm64-targz-checksum-5.0.2XX] | **N/A** | | **RHEL 6** | **N/A** | **N/A** | **N/A** | **N/A** | **N/A** | **N/A** | **N/A** | [![][rhel-6-badge-3.1.4XX]][rhel-6-version-3.1.4XX]
[tar.gz][rhel-6-targz-3.1.4XX] - [Checksum][rhel-6-targz-checksum-3.1.4XX] | Reference notes: @@ -159,12 +159,12 @@ Reference notes: [win-x64-zip-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-win-x64.zip [win-x64-zip-checksum-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-win-x64.zip.sha -[win-x64-badge-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/win_x64_Release_version_badge.svg -[win-x64-version-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/productCommit-win-x64.txt -[win-x64-installer-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-win-x64.exe -[win-x64-installer-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-win-x64.exe.sha -[win-x64-zip-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-win-x64.zip -[win-x64-zip-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-win-x64.zip.sha +[win-x64-badge-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/win_x64_Release_version_badge.svg +[win-x64-version-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/productCommit-win-x64.txt +[win-x64-installer-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-win-x64.exe +[win-x64-installer-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-win-x64.exe.sha +[win-x64-zip-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-win-x64.zip +[win-x64-zip-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-win-x64.zip.sha [win-x64-badge-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/win_x64_Release_version_badge.svg [win-x64-version-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/productCommit-win-x64.txt @@ -215,12 +215,12 @@ Reference notes: [win-x86-zip-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-win-x86.zip [win-x86-zip-checksum-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-win-x86.zip.sha -[win-x86-badge-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/win_x86_Release_version_badge.svg -[win-x86-version-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/productCommit-win-x86.txt -[win-x86-installer-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-win-x86.exe -[win-x86-installer-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-win-x86.exe.sha -[win-x86-zip-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-win-x86.zip -[win-x86-zip-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-win-x86.zip.sha +[win-x86-badge-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/win_x86_Release_version_badge.svg +[win-x86-version-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/productCommit-win-x86.txt +[win-x86-installer-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-win-x86.exe +[win-x86-installer-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-win-x86.exe.sha +[win-x86-zip-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-win-x86.zip +[win-x86-zip-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-win-x86.zip.sha [win-x86-badge-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/win_x86_Release_version_badge.svg [win-x86-version-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/productCommit-win-x86.txt @@ -271,12 +271,12 @@ Reference notes: [osx-x64-targz-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-osx-x64.tar.gz [osx-x64-targz-checksum-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-osx-x64.pkg.tar.gz.sha -[osx-x64-badge-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/osx_x64_Release_version_badge.svg -[osx-x64-version-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/productCommit-osx-x64.txt -[osx-x64-installer-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-osx-x64.pkg -[osx-x64-installer-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-osx-x64.pkg.sha -[osx-x64-targz-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-osx-x64.tar.gz -[osx-x64-targz-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-osx-x64.pkg.tar.gz.sha +[osx-x64-badge-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/osx_x64_Release_version_badge.svg +[osx-x64-version-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/productCommit-osx-x64.txt +[osx-x64-installer-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-osx-x64.pkg +[osx-x64-installer-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-osx-x64.pkg.sha +[osx-x64-targz-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-osx-x64.tar.gz +[osx-x64-targz-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-osx-x64.pkg.tar.gz.sha [osx-x64-badge-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/osx_x64_Release_version_badge.svg [osx-x64-version-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/productCommit-osx-x64.txt @@ -327,12 +327,12 @@ Reference notes: [osx-arm64-targz-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-osx-arm64.tar.gz [osx-arm64-targz-checksum-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-osx-arm64.pkg.tar.gz.sha -[osx-arm64-badge-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/osx_arm64_Release_version_badge.svg -[osx-arm64-version-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/productCommit-osx-arm64.txt -[osx-arm64-installer-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-osx-arm64.pkg -[osx-arm64-installer-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-osx-arm64.pkg.sha -[osx-arm64-targz-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-osx-arm64.tar.gz -[osx-arm64-targz-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-osx-arm64.pkg.tar.gz.sha +[osx-arm64-badge-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/osx_arm64_Release_version_badge.svg +[osx-arm64-version-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/productCommit-osx-arm64.txt +[osx-arm64-installer-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-osx-arm64.pkg +[osx-arm64-installer-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-osx-arm64.pkg.sha +[osx-arm64-targz-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-osx-arm64.tar.gz +[osx-arm64-targz-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-osx-arm64.pkg.tar.gz.sha [osx-arm64-badge-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/osx_arm64_Release_version_badge.svg [osx-arm64-version-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/productCommit-osx-arm64.txt @@ -364,14 +364,14 @@ Reference notes: [linux-targz-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-linux-x64.tar.gz [linux-targz-checksum-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-linux-x64.tar.gz.sha -[linux-badge-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/linux_x64_Release_version_badge.svg -[linux-version-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/productCommit-linux-x64.txt -[linux-DEB-installer-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-x64.deb -[linux-DEB-installer-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-x64.deb.sha -[linux-RPM-installer-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-x64.rpm -[linux-RPM-installer-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-x64.rpm.sha -[linux-targz-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-linux-x64.tar.gz -[linux-targz-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-linux-x64.tar.gz.sha +[linux-badge-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/linux_x64_Release_version_badge.svg +[linux-version-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/productCommit-linux-x64.txt +[linux-DEB-installer-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-x64.deb +[linux-DEB-installer-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-x64.deb.sha +[linux-RPM-installer-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-x64.rpm +[linux-RPM-installer-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-x64.rpm.sha +[linux-targz-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-linux-x64.tar.gz +[linux-targz-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-linux-x64.tar.gz.sha [linux-badge-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/linux_x64_Release_version_badge.svg [linux-version-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/productCommit-linux-x64.txt @@ -432,10 +432,10 @@ Reference notes: [linux-arm-targz-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-linux-arm.tar.gz [linux-arm-targz-checksum-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-linux-arm.tar.gz.sha -[linux-arm-badge-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/linux_arm_Release_version_badge.svg -[linux-arm-version-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/productCommit-linux-arm.txt -[linux-arm-targz-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-linux-arm.tar.gz -[linux-arm-targz-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-linux-arm.tar.gz.sha +[linux-arm-badge-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/linux_arm_Release_version_badge.svg +[linux-arm-version-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/productCommit-linux-arm.txt +[linux-arm-targz-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-linux-arm.tar.gz +[linux-arm-targz-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-linux-arm.tar.gz.sha [linux-arm-badge-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/linux_arm_Release_version_badge.svg [linux-arm-version-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/productCommit-linux-arm.txt @@ -472,10 +472,10 @@ Reference notes: [linux-arm64-targz-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-linux-arm64.tar.gz [linux-arm64-targz-checksum-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-linux-arm64.tar.gz.sha -[linux-arm64-badge-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/linux_arm64_Release_version_badge.svg -[linux-arm64-version-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/productCommit-linux-arm64.txt -[linux-arm64-targz-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-linux-arm64.tar.gz -[linux-arm64-targz-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-linux-arm64.tar.gz.sha +[linux-arm64-badge-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/linux_arm64_Release_version_badge.svg +[linux-arm64-version-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/productCommit-linux-arm64.txt +[linux-arm64-targz-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-linux-arm64.tar.gz +[linux-arm64-targz-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-linux-arm64.tar.gz.sha [linux-arm64-badge-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/linux_arm64_Release_version_badge.svg [linux-arm64-version-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/productCommit-linux-arm64.txt @@ -512,10 +512,10 @@ Reference notes: [rhel-6-targz-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-rhel.6-x64.tar.gz [rhel-6-targz-checksum-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-rhel.6-x64.tar.gz.sha -[rhel-6-badge-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/rhel.6_x64_Release_version_badge.svg -[rhel-6-version-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/productCommit-rhel.6-x64.txt -[rhel-6-targz-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-rhel.6-x64.tar.gz -[rhel-6-targz-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-rhel.6-x64.tar.gz.sha +[rhel-6-badge-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/rhel.6_x64_Release_version_badge.svg +[rhel-6-version-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/productCommit-rhel.6-x64.txt +[rhel-6-targz-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-rhel.6-x64.tar.gz +[rhel-6-targz-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-rhel.6-x64.tar.gz.sha [rhel-6-badge-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/rhel.6_x64_Release_version_badge.svg [rhel-6-version-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/productCommit-rhel.6-x64.txt @@ -552,10 +552,10 @@ Reference notes: [linux-musl-x64-targz-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-linux-musl-x64.tar.gz [linux-musl-x64-targz-checksum-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-linux-musl-x64.tar.gz.sha -[linux-musl-x64-badge-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/linux_musl_x64_Release_version_badge.svg -[linux-musl-x64-version-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/productCommit-linux-musl-x64.txt -[linux-musl-x64-targz-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-linux-musl-x64.tar.gz -[linux-musl-x64-targz-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-linux-musl-x64.tar.gz.sha +[linux-musl-x64-badge-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/linux_musl_x64_Release_version_badge.svg +[linux-musl-x64-version-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/productCommit-linux-musl-x64.txt +[linux-musl-x64-targz-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-linux-musl-x64.tar.gz +[linux-musl-x64-targz-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-linux-musl-x64.tar.gz.sha [linux-musl-x64-badge-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/linux_musl_x64_Release_version_badge.svg [linux-musl-x64-version-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/productCommit-linux-musl-x64.txt @@ -592,10 +592,10 @@ Reference notes: [linux-musl-arm-targz-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-linux-musl-arm.tar.gz [linux-musl-arm-targz-checksum-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-linux-musl-arm.tar.gz.sha -[linux-musl-arm-badge-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/linux_musl_arm_Release_version_badge.svg -[linux-musl-arm-version-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/productCommit-linux-musl-arm.txt -[linux-musl-arm-targz-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-linux-musl-arm.tar.gz -[linux-musl-arm-targz-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-linux-musl-arm.tar.gz.sha +[linux-musl-arm-badge-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/linux_musl_arm_Release_version_badge.svg +[linux-musl-arm-version-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/productCommit-linux-musl-arm.txt +[linux-musl-arm-targz-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-linux-musl-arm.tar.gz +[linux-musl-arm-targz-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-linux-musl-arm.tar.gz.sha [linux-musl-arm-badge-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/linux_musl_arm_Release_version_badge.svg [linux-musl-arm-version-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/productCommit-linux-musl-arm.txt @@ -627,10 +627,10 @@ Reference notes: [linux-musl-arm64-targz-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-linux-musl-arm64.tar.gz [linux-musl-arm64-targz-checksum-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-linux-musl-arm64.tar.gz.sha -[linux-musl-arm64-badge-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/linux_musl_arm64_Release_version_badge.svg -[linux-musl-arm64-version-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/productCommit-linux-musl-arm64.txt -[linux-musl-arm64-targz-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-linux-musl-arm64.tar.gz -[linux-musl-arm64-targz-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-linux-musl-arm64.tar.gz.sha +[linux-musl-arm64-badge-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/linux_musl_arm64_Release_version_badge.svg +[linux-musl-arm64-version-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/productCommit-linux-musl-arm64.txt +[linux-musl-arm64-targz-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-linux-musl-arm64.tar.gz +[linux-musl-arm64-targz-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-linux-musl-arm64.tar.gz.sha [linux-musl-arm64-badge-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/linux_musl_arm64_Release_version_badge.svg [linux-musl-arm64-version-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/productCommit-linux-musl-arm64.txt @@ -662,10 +662,10 @@ Reference notes: [win-arm-zip-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-win-arm.zip [win-arm-zip-checksum-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-win-arm.zip.sha -[win-arm-badge-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/win_arm_Release_version_badge.svg -[win-arm-version-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/productCommit-win-arm.txt -[win-arm-zip-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-win-arm.zip -[win-arm-zip-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-win-arm.zip.sha +[win-arm-badge-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/win_arm_Release_version_badge.svg +[win-arm-version-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/productCommit-win-arm.txt +[win-arm-zip-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-win-arm.zip +[win-arm-zip-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-win-arm.zip.sha [win-arm-badge-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/win_arm_Release_version_badge.svg [win-arm-version-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/productCommit-win-arm.txt @@ -704,12 +704,12 @@ Reference notes: [win-arm64-zip-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-win-arm64.zip [win-arm64-zip-checksum-main]: https://aka.ms/dotnet/7.0.1xx/daily/dotnet-sdk-win-arm64.zip.sha -[win-arm64-badge-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/win_arm64_Release_version_badge.svg -[win-arm64-version-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/productCommit-win-arm64.txt -[win-arm64-installer-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-win-arm64.exe -[win-arm64-installer-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-win-arm64.exe.sha -[win-arm64-zip-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-win-arm64.zip -[win-arm64-zip-checksum-7.0.1XX-preview3]: https://aka.ms/dotnet/7.0.1xx-preview3/daily/dotnet-sdk-win-arm64.zip.sha +[win-arm64-badge-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/win_arm64_Release_version_badge.svg +[win-arm64-version-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/productCommit-win-arm64.txt +[win-arm64-installer-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-win-arm64.exe +[win-arm64-installer-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-win-arm64.exe.sha +[win-arm64-zip-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-win-arm64.zip +[win-arm64-zip-checksum-7.0.1XX-preview4]: https://aka.ms/dotnet/7.0.1xx-preview4/daily/dotnet-sdk-win-arm64.zip.sha [win-arm64-badge-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/win_arm64_Release_version_badge.svg [win-arm64-version-6.0.3XX]: https://aka.ms/dotnet/6.0.3xx/daily/productCommit-win-arm64.txt diff --git a/tools/sdk-readme-table-generator/TableGenerator/Program.fs b/tools/sdk-readme-table-generator/TableGenerator/Program.fs index 66d61161a..e040c0726 100644 --- a/tools/sdk-readme-table-generator/TableGenerator/Program.fs +++ b/tools/sdk-readme-table-generator/TableGenerator/Program.fs @@ -9,9 +9,9 @@ let inputBranches = [ { GitBranchName = "main" DisplayName = "main
(7.0.x Runtime)" AkaMsChannel = Some("7.0.1xx/daily") } - { GitBranchName = "release/7.0.1xx-preview3" - DisplayName = "Release/7.0.1xx-preview3
(7.0.x Runtime)" - AkaMsChannel = Some("7.0.1xx-preview3/daily") } + { GitBranchName = "release/7.0.1xx-preview4" + DisplayName = "Release/7.0.1xx-preview4
(7.0.x Runtime)" + AkaMsChannel = Some("7.0.1xx-preview4/daily") } { GitBranchName = "release/6.0.3xx" DisplayName = "Release/6.0.3XX
(6.0.x Runtime)" AkaMsChannel = Some("6.0.3xx/daily") } From 9637a7e655cba31b8ae68ac5de12ffb905928b20 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 25 Apr 2022 20:52:45 +0000 Subject: [PATCH 68/77] Update dependencies from https://github.com/dotnet/sdk build 20220425.4 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22225.4 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22224.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index f94812a6b..12b433bf9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,21 +1,21 @@ - + https://github.com/dotnet/windowsdesktop - efc4e2c984aab17f3d975f2d87d9a995675f5a58 + c00f6672a39245c3b0b3c96a657101c43a7beeed - + https://github.com/dotnet/windowsdesktop - efc4e2c984aab17f3d975f2d87d9a995675f5a58 + c00f6672a39245c3b0b3c96a657101c43a7beeed - + https://github.com/dotnet/windowsdesktop - efc4e2c984aab17f3d975f2d87d9a995675f5a58 + c00f6672a39245c3b0b3c96a657101c43a7beeed - + https://github.com/dotnet/windowsdesktop - efc4e2c984aab17f3d975f2d87d9a995675f5a58 + c00f6672a39245c3b0b3c96a657101c43a7beeed https://github.com/dotnet/runtime @@ -103,23 +103,23 @@ d381f307413f95af117c6e5afa81979970d582a5 - + https://github.com/dotnet/sdk - 6698cd97f38ea3ad2c7182f95e5b9ec887c29f56 + a1a462b7320cf58c1eb94ffbf9ec59ce1cb3dcbe - + https://github.com/dotnet/sdk - 6698cd97f38ea3ad2c7182f95e5b9ec887c29f56 + a1a462b7320cf58c1eb94ffbf9ec59ce1cb3dcbe - + https://github.com/dotnet/winforms - 0b2ee90e0c1c08458fdebaf72c81f0833e90b8f1 + d7179ee7fba549954c09bdedf30d70ce7eee0799 - + https://github.com/dotnet/wpf - e7a5812a1564b364ec0e2fc9db8db44fde3918a4 + 7d3a15b116a455edbfd2c9706ef6e44c3981e8dd https://github.com/dotnet/fsharp diff --git a/eng/Versions.props b/eng/Versions.props index 829d06918..43978e89c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -30,11 +30,11 @@
- 7.0.0-preview.4.22222.5 + 7.0.0-preview.4.22224.1 - 7.0.0-preview.5.22222.6 + 7.0.0-preview.5.22224.1 @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22225.3 - 7.0.100-preview.5.22225.3 + 7.0.100-preview.5.22225.4 + 7.0.100-preview.5.22225.4 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -86,10 +86,10 @@ - 7.0.0-preview.5.22223.1 - 7.0.0-preview.5.22223.1 - 7.0.0-preview.5.22223.1 - 7.0.0-preview.5.22223.1 + 7.0.0-preview.5.22224.1 + 7.0.0-preview.5.22224.1 + 7.0.0-preview.5.22224.1 + 7.0.0-preview.5.22224.1 From 8e597ca82fb4f6192a70f3609d009f2c2e6fe597 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 25 Apr 2022 22:43:48 +0000 Subject: [PATCH 69/77] Update dependencies from https://github.com/dotnet/sdk build 20220425.5 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22225.5 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22224.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 12b433bf9..c4da58539 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ d381f307413f95af117c6e5afa81979970d582a5
- + https://github.com/dotnet/sdk - a1a462b7320cf58c1eb94ffbf9ec59ce1cb3dcbe + cac70d2f224d816f9238cc6afa4deb95b10df141 - + https://github.com/dotnet/sdk - a1a462b7320cf58c1eb94ffbf9ec59ce1cb3dcbe + cac70d2f224d816f9238cc6afa4deb95b10df141 diff --git a/eng/Versions.props b/eng/Versions.props index 43978e89c..affe5671a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22225.4 - 7.0.100-preview.5.22225.4 + 7.0.100-preview.5.22225.5 + 7.0.100-preview.5.22225.5 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 3de66f8163a9a4dbd3902aa6e6298228da1e7299 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 26 Apr 2022 00:21:48 +0000 Subject: [PATCH 70/77] Update dependencies from https://github.com/dotnet/sdk build 20220425.6 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22225.6 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22224.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c4da58539..397c915a1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ d381f307413f95af117c6e5afa81979970d582a5 - + https://github.com/dotnet/sdk - cac70d2f224d816f9238cc6afa4deb95b10df141 + d17662320a8b72d8ec2af31682911a0598ecb993 - + https://github.com/dotnet/sdk - cac70d2f224d816f9238cc6afa4deb95b10df141 + d17662320a8b72d8ec2af31682911a0598ecb993 diff --git a/eng/Versions.props b/eng/Versions.props index affe5671a..3f6644c1d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22225.5 - 7.0.100-preview.5.22225.5 + 7.0.100-preview.5.22225.6 + 7.0.100-preview.5.22225.6 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From b197e7f3e77675d8c81175a12ffce4d5fd909686 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 26 Apr 2022 01:03:15 +0000 Subject: [PATCH 71/77] Update dependencies from https://github.com/dotnet/sdk build 20220425.7 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22225.7 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22224.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 32 ++++++++++++++++---------------- eng/Versions.props | 16 ++++++++-------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 397c915a1..e73b6f327 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -52,30 +52,30 @@ https://github.com/dotnet/runtime e3442b43424f040faca7611d4bcf53a357397df8 - + https://github.com/dotnet/aspnetcore - 717fd3f85eee4fcf0d22a866c5e7e03b0dd3200a + bf03cee1625eb74939b28ea6b79b4a994b926421 - + https://github.com/dotnet/aspnetcore - 717fd3f85eee4fcf0d22a866c5e7e03b0dd3200a + bf03cee1625eb74939b28ea6b79b4a994b926421 - + https://github.com/dotnet/aspnetcore - 717fd3f85eee4fcf0d22a866c5e7e03b0dd3200a + bf03cee1625eb74939b28ea6b79b4a994b926421 - + https://github.com/dotnet/aspnetcore - 717fd3f85eee4fcf0d22a866c5e7e03b0dd3200a + bf03cee1625eb74939b28ea6b79b4a994b926421 - + https://github.com/dotnet/aspnetcore - 717fd3f85eee4fcf0d22a866c5e7e03b0dd3200a + bf03cee1625eb74939b28ea6b79b4a994b926421 - + https://github.com/dotnet/aspnetcore - 717fd3f85eee4fcf0d22a866c5e7e03b0dd3200a + bf03cee1625eb74939b28ea6b79b4a994b926421 https://github.com/dotnet/test-templates @@ -103,14 +103,14 @@ d381f307413f95af117c6e5afa81979970d582a5 - + https://github.com/dotnet/sdk - d17662320a8b72d8ec2af31682911a0598ecb993 + d081b9372cbfb61040e72ec26aa4f1672c3882cf - + https://github.com/dotnet/sdk - d17662320a8b72d8ec2af31682911a0598ecb993 + d081b9372cbfb61040e72ec26aa4f1672c3882cf diff --git a/eng/Versions.props b/eng/Versions.props index 3f6644c1d..2e938975c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,20 +52,20 @@ - 7.0.0-preview.5.22225.1 - 7.0.0-preview.5.22225.1 - 7.0.0-preview.5.22225.1 - 7.0.0-preview.5.22225.1 - 7.0.0-preview.5.22225.1 - 7.0.0-preview.5.22225.1 + 7.0.0-preview.5.22225.5 + 7.0.0-preview.5.22225.5 + 7.0.0-preview.5.22225.5 + 7.0.0-preview.5.22225.5 + 7.0.0-preview.5.22225.5 + 7.0.0-preview.5.22225.5 0.2.0 - 7.0.100-preview.5.22225.6 - 7.0.100-preview.5.22225.6 + 7.0.100-preview.5.22225.7 + 7.0.100-preview.5.22225.7 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 7a9e98ebfb6a36b587a2f304978cfa98972bbdd2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 26 Apr 2022 02:35:51 +0000 Subject: [PATCH 72/77] Update dependencies from https://github.com/dotnet/sdk build 20220425.8 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22225.8 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22224.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 8 ++++---- eng/Versions.props | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e73b6f327..b5bcbdcb7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ d381f307413f95af117c6e5afa81979970d582a5 - + https://github.com/dotnet/sdk - d081b9372cbfb61040e72ec26aa4f1672c3882cf + a2c34bbec73d423b76b91a5879a677f4173d92d8 - + https://github.com/dotnet/sdk - d081b9372cbfb61040e72ec26aa4f1672c3882cf + a2c34bbec73d423b76b91a5879a677f4173d92d8 diff --git a/eng/Versions.props b/eng/Versions.props index 2e938975c..11e75346d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22225.7 - 7.0.100-preview.5.22225.7 + 7.0.100-preview.5.22225.8 + 7.0.100-preview.5.22225.8 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From a645634411568bd4578d6079559a4c9535343aeb Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 26 Apr 2022 04:16:28 +0000 Subject: [PATCH 73/77] Update dependencies from https://github.com/dotnet/sdk build 20220425.9 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22225.9 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22224.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b5bcbdcb7..9d5655b92 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ d381f307413f95af117c6e5afa81979970d582a5 - + https://github.com/dotnet/sdk - a2c34bbec73d423b76b91a5879a677f4173d92d8 + 0ab5edc9cc48b8c4b3a81964178d948735fcd12e - + https://github.com/dotnet/sdk - a2c34bbec73d423b76b91a5879a677f4173d92d8 + 0ab5edc9cc48b8c4b3a81964178d948735fcd12e @@ -141,9 +141,9 @@ linker - + https://github.com/dotnet/roslyn - c9d9e122cfff99ce9508a54897254d407b148f48 + f640e1a567d9186314ac0c865b941a2494804055 diff --git a/eng/Versions.props b/eng/Versions.props index 11e75346d..dac6d0b65 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22225.8 - 7.0.100-preview.5.22225.8 + 7.0.100-preview.5.22225.9 + 7.0.100-preview.5.22225.9 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From 6a8666c81be74a32e6df853a2b3b113d7337c27b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 26 Apr 2022 07:39:51 +0000 Subject: [PATCH 74/77] Update dependencies from https://github.com/dotnet/sdk build 20220425.13 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22225.13 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22224.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9d5655b92..72a8d2de0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ d381f307413f95af117c6e5afa81979970d582a5 - + https://github.com/dotnet/sdk - 0ab5edc9cc48b8c4b3a81964178d948735fcd12e + ab0701b1896dffbf2da798dcf95dd7f44049a402 - + https://github.com/dotnet/sdk - 0ab5edc9cc48b8c4b3a81964178d948735fcd12e + ab0701b1896dffbf2da798dcf95dd7f44049a402 @@ -141,9 +141,9 @@ linker - + https://github.com/dotnet/roslyn - f640e1a567d9186314ac0c865b941a2494804055 + cf79620a5243d1f059dc0e295f78d14d798a1e68 diff --git a/eng/Versions.props b/eng/Versions.props index dac6d0b65..ad9883b2c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22225.9 - 7.0.100-preview.5.22225.9 + 7.0.100-preview.5.22225.13 + 7.0.100-preview.5.22225.13 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) From ea3084ee4cd3383e08a9a35eb1940bdec5a660c9 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 26 Apr 2022 09:07:36 +0000 Subject: [PATCH 75/77] Update dependencies from https://github.com/dotnet/sdk build 20220426.2 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22226.2 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22224.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 48 ++++++++++++++++++++--------------------- eng/Versions.props | 20 ++++++++--------- 2 files changed, 34 insertions(+), 34 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 72a8d2de0..854ad9b5e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -52,30 +52,30 @@ https://github.com/dotnet/runtime e3442b43424f040faca7611d4bcf53a357397df8 - + https://github.com/dotnet/aspnetcore - bf03cee1625eb74939b28ea6b79b4a994b926421 + 0cd153e491c682daa0012a2ff2dbf90d9b26bcab - + https://github.com/dotnet/aspnetcore - bf03cee1625eb74939b28ea6b79b4a994b926421 + 0cd153e491c682daa0012a2ff2dbf90d9b26bcab - + https://github.com/dotnet/aspnetcore - bf03cee1625eb74939b28ea6b79b4a994b926421 + 0cd153e491c682daa0012a2ff2dbf90d9b26bcab - + https://github.com/dotnet/aspnetcore - bf03cee1625eb74939b28ea6b79b4a994b926421 + 0cd153e491c682daa0012a2ff2dbf90d9b26bcab - + https://github.com/dotnet/aspnetcore - bf03cee1625eb74939b28ea6b79b4a994b926421 + 0cd153e491c682daa0012a2ff2dbf90d9b26bcab - + https://github.com/dotnet/aspnetcore - bf03cee1625eb74939b28ea6b79b4a994b926421 + 0cd153e491c682daa0012a2ff2dbf90d9b26bcab https://github.com/dotnet/test-templates @@ -94,23 +94,23 @@ 94383b5042e7289ce57fd7c38dec0c879a6a772a - + https://github.com/dotnet/templating - d381f307413f95af117c6e5afa81979970d582a5 + 3ac78976dc4851d56c17e8f9e21ed1d54ddd8762 - + https://github.com/dotnet/templating - d381f307413f95af117c6e5afa81979970d582a5 + 3ac78976dc4851d56c17e8f9e21ed1d54ddd8762 - + https://github.com/dotnet/sdk - ab0701b1896dffbf2da798dcf95dd7f44049a402 + ffba2db879d11b57944df85187dc12ccd5a995dc - + https://github.com/dotnet/sdk - ab0701b1896dffbf2da798dcf95dd7f44049a402 + ffba2db879d11b57944df85187dc12ccd5a995dc @@ -130,14 +130,14 @@ 8854f5d1f3bd7e60d42565a18a2f8c06ae307474 - + https://github.com/microsoft/vstest - c8f881a518377cb723e41f13dbb7a02d2f2712fb + a491a64c40c8672ecfe1e257f79c0197359486e8 - + https://github.com/dotnet/linker - dec9a23c4c164111df76d427656357113c0d705a + 4418cce12192f379b9b4d5baa111812e40707f84 linker diff --git a/eng/Versions.props b/eng/Versions.props index ad9883b2c..e92c59cdd 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -38,7 +38,7 @@ - 7.0.100-preview.5.22224.1 + 7.0.100-preview.5.22225.1 @@ -52,20 +52,20 @@ - 7.0.0-preview.5.22225.5 - 7.0.0-preview.5.22225.5 - 7.0.0-preview.5.22225.5 - 7.0.0-preview.5.22225.5 - 7.0.0-preview.5.22225.5 - 7.0.0-preview.5.22225.5 + 7.0.0-preview.5.22225.7 + 7.0.0-preview.5.22225.7 + 7.0.0-preview.5.22225.7 + 7.0.0-preview.5.22225.7 + 7.0.0-preview.5.22225.7 + 7.0.0-preview.5.22225.7 0.2.0 - 7.0.100-preview.5.22225.13 - 7.0.100-preview.5.22225.13 + 7.0.100-preview.5.22226.2 + 7.0.100-preview.5.22226.2 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -167,7 +167,7 @@ 2.2.0-beta.19072.10 2.0.0 - 17.3.0-preview-20220423-01 + 17.3.0-preview-20220425-03 From 2a4af805aad1449bcc826a104861898c52b021ab Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 26 Apr 2022 09:50:29 +0000 Subject: [PATCH 76/77] Update dependencies from https://github.com/dotnet/sdk build 20220426.4 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22226.4 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22224.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 60 ++++++++++++++++++++--------------------- eng/Versions.props | 30 ++++++++++----------- 2 files changed, 45 insertions(+), 45 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 854ad9b5e..89dd703af 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -17,30 +17,30 @@ https://github.com/dotnet/windowsdesktop c00f6672a39245c3b0b3c96a657101c43a7beeed - + https://github.com/dotnet/runtime - e3442b43424f040faca7611d4bcf53a357397df8 + 47d9c43ab1f10a98a348a28b3fd7ed9c4d35328b - + https://github.com/dotnet/runtime - e3442b43424f040faca7611d4bcf53a357397df8 + 47d9c43ab1f10a98a348a28b3fd7ed9c4d35328b - + https://github.com/dotnet/runtime - e3442b43424f040faca7611d4bcf53a357397df8 + 47d9c43ab1f10a98a348a28b3fd7ed9c4d35328b - + https://github.com/dotnet/runtime - e3442b43424f040faca7611d4bcf53a357397df8 + 47d9c43ab1f10a98a348a28b3fd7ed9c4d35328b - + https://github.com/dotnet/runtime - e3442b43424f040faca7611d4bcf53a357397df8 + 47d9c43ab1f10a98a348a28b3fd7ed9c4d35328b - + https://github.com/dotnet/runtime - e3442b43424f040faca7611d4bcf53a357397df8 + 47d9c43ab1f10a98a348a28b3fd7ed9c4d35328b @@ -48,34 +48,34 @@ https://github.com/dotnet/core-setup 7d57652f33493fa022125b7f63aad0d70c52d810 - + https://github.com/dotnet/runtime - e3442b43424f040faca7611d4bcf53a357397df8 + 47d9c43ab1f10a98a348a28b3fd7ed9c4d35328b - + https://github.com/dotnet/aspnetcore - 0cd153e491c682daa0012a2ff2dbf90d9b26bcab + d6ea6d7204c3fc32290b2e8545edf0899c90f52b - + https://github.com/dotnet/aspnetcore - 0cd153e491c682daa0012a2ff2dbf90d9b26bcab + d6ea6d7204c3fc32290b2e8545edf0899c90f52b - + https://github.com/dotnet/aspnetcore - 0cd153e491c682daa0012a2ff2dbf90d9b26bcab + d6ea6d7204c3fc32290b2e8545edf0899c90f52b - + https://github.com/dotnet/aspnetcore - 0cd153e491c682daa0012a2ff2dbf90d9b26bcab + d6ea6d7204c3fc32290b2e8545edf0899c90f52b - + https://github.com/dotnet/aspnetcore - 0cd153e491c682daa0012a2ff2dbf90d9b26bcab + d6ea6d7204c3fc32290b2e8545edf0899c90f52b - + https://github.com/dotnet/aspnetcore - 0cd153e491c682daa0012a2ff2dbf90d9b26bcab + d6ea6d7204c3fc32290b2e8545edf0899c90f52b https://github.com/dotnet/test-templates @@ -103,14 +103,14 @@ 3ac78976dc4851d56c17e8f9e21ed1d54ddd8762 - + https://github.com/dotnet/sdk - ffba2db879d11b57944df85187dc12ccd5a995dc + 196c697e22ddb4735bb73ac50fb60a2984402da2 - + https://github.com/dotnet/sdk - ffba2db879d11b57944df85187dc12ccd5a995dc + 196c697e22ddb4735bb73ac50fb60a2984402da2 diff --git a/eng/Versions.props b/eng/Versions.props index e92c59cdd..092a859e4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -52,36 +52,36 @@ - 7.0.0-preview.5.22225.7 - 7.0.0-preview.5.22225.7 - 7.0.0-preview.5.22225.7 - 7.0.0-preview.5.22225.7 - 7.0.0-preview.5.22225.7 - 7.0.0-preview.5.22225.7 + 7.0.0-preview.5.22225.9 + 7.0.0-preview.5.22225.9 + 7.0.0-preview.5.22225.9 + 7.0.0-preview.5.22225.9 + 7.0.0-preview.5.22225.9 + 7.0.0-preview.5.22225.9 0.2.0 - 7.0.100-preview.5.22226.2 - 7.0.100-preview.5.22226.2 + 7.0.100-preview.5.22226.4 + 7.0.100-preview.5.22226.4 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) - 7.0.0-preview.4.22219.9 + 7.0.0-preview.5.22224.3 - 7.0.0-preview.4.22219.9 - 7.0.0-preview.4.22219.9 - 7.0.0-preview.4.22219.9 - 7.0.0-preview.4.22219.9 - 7.0.0-preview.4.22219.9 - 7.0.0-preview.4.22219.9 + 7.0.0-preview.5.22224.3 + 7.0.0-preview.5.22224.3 + 7.0.0-preview.5.22224.3 + 7.0.0-preview.5.22224.3 + 7.0.0-preview.5.22224.3 + 7.0.0-preview.5.22224.3 2.1.0 From 17cceeb352e67e4fefe91de66415f5298947206c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 26 Apr 2022 15:07:54 +0000 Subject: [PATCH 77/77] Update dependencies from https://github.com/dotnet/sdk build 20220426.6 Microsoft.DotNet.MSBuildSdkResolver , Microsoft.NET.Sdk From Version 7.0.100-preview.4.22218.15 -> To Version 7.0.100-preview.5.22226.6 Dependency coherency updates Microsoft.WindowsDesktop.App.Ref,VS.Redist.Common.WindowsDesktop.SharedFramework.x64.7.0,VS.Redist.Common.WindowsDesktop.TargetingPack.x64.7.0,Microsoft.NETCore.App.Ref,VS.Redist.Common.NetCore.TargetingPack.x64.7.0,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.NETCore.App.Host.win-x64,Microsoft.NETCore.DotNetHostResolver,Microsoft.NETCore.Platforms,Microsoft.AspNetCore.App.Ref,Microsoft.AspNetCore.App.Ref.Internal,Microsoft.AspNetCore.App.Runtime.win-x64,VS.Redist.Common.AspNetCore.SharedFramework.x64.7.0,dotnet-dev-certs,dotnet-user-secrets,Microsoft.DotNet.Common.ItemTemplates,Microsoft.TemplateEngine.Cli,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.WindowsDesktop.App.Runtime.win-x64,Microsoft.DotNet.Wpf.ProjectTemplates,Microsoft.FSharp.Compiler,Microsoft.SourceBuild.Intermediate.fsharp,Microsoft.NET.Test.Sdk,Microsoft.NET.ILLink.Tasks,Microsoft.Net.Compilers.Toolset,Microsoft.Build,NuGet.Build.Tasks,VS.Redist.Common.NetCore.SharedFramework.x64.7.0 From Version 7.0.0-preview.4.22217.1 -> To Version 7.0.0-preview.5.22224.1 (parent: Microsoft.NET.Sdk --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 89dd703af..c34da3b4a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -103,14 +103,14 @@ 3ac78976dc4851d56c17e8f9e21ed1d54ddd8762 - + https://github.com/dotnet/sdk - 196c697e22ddb4735bb73ac50fb60a2984402da2 + 752a1f11c189453dd21d1a04b24483e65075b842 - + https://github.com/dotnet/sdk - 196c697e22ddb4735bb73ac50fb60a2984402da2 + 752a1f11c189453dd21d1a04b24483e65075b842 @@ -130,9 +130,9 @@ 8854f5d1f3bd7e60d42565a18a2f8c06ae307474 - + https://github.com/microsoft/vstest - a491a64c40c8672ecfe1e257f79c0197359486e8 + f8604cd05e828c31b642da74cf5b5131992c80db diff --git a/eng/Versions.props b/eng/Versions.props index 092a859e4..8b2fe1d6a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,8 +64,8 @@ - 7.0.100-preview.5.22226.4 - 7.0.100-preview.5.22226.4 + 7.0.100-preview.5.22226.6 + 7.0.100-preview.5.22226.6 $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) $(MicrosoftNETSdkPackageVersion) @@ -167,7 +167,7 @@ 2.2.0-beta.19072.10 2.0.0 - 17.3.0-preview-20220425-03 + 17.3.0-preview-20220425-07