diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index c2a4d4d149d..d35b080eb2f 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -83,25 +83,25 @@
-
+
https://github.com/dotnet/arcade
- fe787bd48ed72e51a98eb5e4e5e5af74edb531e5
+ 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e
-
+
https://github.com/dotnet/arcade
- fe787bd48ed72e51a98eb5e4e5e5af74edb531e5
+ 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e
-
+
https://github.com/dotnet/arcade
- fe787bd48ed72e51a98eb5e4e5e5af74edb531e5
+ 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e
-
+
https://github.com/dotnet/arcade
- fe787bd48ed72e51a98eb5e4e5e5af74edb531e5
+ 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e
-
+
https://github.com/dotnet/arcade
- fe787bd48ed72e51a98eb5e4e5e5af74edb531e5
+ 3dd12f0a1d25fa29b84e38b7d2345a693f4ae45e
diff --git a/eng/Versions.props b/eng/Versions.props
index 7c5391bedec..ec3defb8a6a 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -39,9 +39,9 @@
- 6.0.0-beta.21420.4
- 6.0.0-beta.21420.4
- 6.0.0-beta.21420.4
+ 6.0.0-beta.21424.3
+ 6.0.0-beta.21424.3
+ 6.0.0-beta.21424.3
diff --git a/eng/common/build.sh b/eng/common/build.sh
index 9d3042a943e..bc07a1c6848 100755
--- a/eng/common/build.sh
+++ b/eng/common/build.sh
@@ -187,7 +187,10 @@ function InitializeCustomToolset {
}
function Build {
- TryLogClientIpAddress
+
+ if [[ "$ci" == true ]]; then
+ TryLogClientIpAddress
+ fi
InitializeToolset
InitializeCustomToolset
diff --git a/eng/common/sdk-task.ps1 b/eng/common/sdk-task.ps1
index 7ffa3591e9c..7ab9baac5c8 100644
--- a/eng/common/sdk-task.ps1
+++ b/eng/common/sdk-task.ps1
@@ -83,7 +83,9 @@ try {
}
if ($restore) {
- Try-LogClientIpAddress
+ if ($ci) {
+ Try-LogClientIpAddress
+ }
Build 'Restore'
}
diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1
index e607aa43697..56ee4a577ac 100644
--- a/eng/common/tools.ps1
+++ b/eng/common/tools.ps1
@@ -154,9 +154,6 @@ function InitializeDotNetCli([bool]$install, [bool]$createSdkLocationFile) {
return $global:_DotNetInstallDir
}
- # In case of network error, try to log the current IP for reference
- Try-LogClientIpAddress
-
# Don't resolve runtime, shared framework, or SDK from other locations to ensure build determinism
$env:DOTNET_MULTILEVEL_LOOKUP=0
@@ -166,6 +163,9 @@ function InitializeDotNetCli([bool]$install, [bool]$createSdkLocationFile) {
# Disable telemetry on CI.
if ($ci) {
$env:DOTNET_CLI_TELEMETRY_OPTOUT=1
+
+ # In case of network error, try to log the current IP for reference
+ Try-LogClientIpAddress
}
# Source Build uses DotNetCoreSdkDir variable
diff --git a/eng/common/tools.sh b/eng/common/tools.sh
index 3c5f3a12c0a..41e323104df 100755
--- a/eng/common/tools.sh
+++ b/eng/common/tools.sh
@@ -402,7 +402,7 @@ function StopProcesses {
function TryLogClientIpAddress () {
echo 'Attempting to log this client''s IP for Azure Package feed telemetry purposes'
if command -v curl > /dev/null; then
- curl -s 'http://co1.msedge.net/fdv2/diagnostics.aspx' | grep ' IP: '
+ curl -s 'http://co1.msedge.net/fdv2/diagnostics.aspx' | grep ' IP: ' || true
fi
}
diff --git a/global.json b/global.json
index afde6d2bee9..06b54b345bf 100644
--- a/global.json
+++ b/global.json
@@ -12,8 +12,8 @@
}
},
"msbuild-sdks": {
- "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21420.4",
- "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21420.4"
+ "Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21424.3",
+ "Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21424.3"
},
"sdk": {
"version": "6.0.100-rc.1.21416.15"