diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index c2f38b2d7..75d04f870 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -100,9 +100,9 @@
-
+
https://github.com/dotnet/arcade
- 86e54fb5076d46a6f959f0329d53c1c72e2280df
+ d8c2d041341ea7974fd3f2057e9d6afdd4f37598
diff --git a/eng/common/build.ps1 b/eng/common/build.ps1
index 88814514d..813d440d2 100644
--- a/eng/common/build.ps1
+++ b/eng/common/build.ps1
@@ -26,6 +26,11 @@ Param(
[Parameter(ValueFromRemainingArguments=$true)][String[]]$properties
)
+# Unset 'Platform' environment variable to avoid unwanted collision in InstallDotNetCore.targets file
+# some computer has this env var defined (e.g. Some HP)
+if($env:Platform) {
+ $env:Platform=""
+}
function Print-Usage() {
Write-Host "Common settings:"
Write-Host " -configuration Build configuration: 'Debug' or 'Release' (short: -c)"
diff --git a/global.json b/global.json
index f540e31f2..7622b2cfa 100644
--- a/global.json
+++ b/global.json
@@ -8,6 +8,6 @@
}
},
"msbuild-sdks": {
- "Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20129.1"
+ "Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20152.4"
}
}