From d0da052682e38d877670d8f5ba5389e6e6c72fc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Jare=C5=A1?= Date: Wed, 23 Aug 2023 14:20:23 +0200 Subject: [PATCH 1/3] Fix cannot find System.Text.Json --- .../Microsoft.TestPlatform/Microsoft.TestPlatform.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/package/Microsoft.TestPlatform/Microsoft.TestPlatform.csproj b/src/package/Microsoft.TestPlatform/Microsoft.TestPlatform.csproj index 34e29bb04f..8752bdd9cd 100644 --- a/src/package/Microsoft.TestPlatform/Microsoft.TestPlatform.csproj +++ b/src/package/Microsoft.TestPlatform/Microsoft.TestPlatform.csproj @@ -91,7 +91,7 @@ - + From 5755bb6b66c9f5588862f52cf40f0fb46f3f2da0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Jare=C5=A1?= Date: Wed, 23 Aug 2023 14:26:25 +0200 Subject: [PATCH 2/3] Bump to 17.7.2 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 1c4fbbce25..d465296580 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -8,7 +8,7 @@ is trying to parse that version and will consider any version with more than 4 `.` in it as invalid. --> true - 17.7.1 + 17.7.2 release From 6eaa7ed6344120f7a6446569c43d471e1ad37a62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Jare=C5=A1?= Date: Wed, 23 Aug 2023 15:12:13 +0200 Subject: [PATCH 3/3] Use dotnet install script directly to get latest fix --- eng/common/tools.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 38cf94ff88..e44b63fda6 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -263,7 +263,7 @@ function GetDotNetInstallScript([string] $dotnetRoot) { if (!(Test-Path $installScript)) { Create-Directory $dotnetRoot $ProgressPreference = 'SilentlyContinue' # Don't display the console progress UI - it's a huge perf hit - $uri = "https://dotnet.microsoft.com/download/dotnet/scripts/$dotnetInstallScriptVersion/dotnet-install.ps1" + $uri = "https://raw.githubusercontent.com/dotnet/install-scripts/main/src/dotnet-install.ps1" Retry({ Write-Host "GET $uri"