Skip to content

Commit 421d23a

Browse files
committed
Merge in 'release/6.0-rc2' changes
2 parents 1d32b84 + c696379 commit 421d23a

File tree

4 files changed

+30
-20
lines changed

4 files changed

+30
-20
lines changed

eng/Version.Details.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -280,22 +280,22 @@
280280
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-runtime</Uri>
281281
<Sha>5b0c346c5f98df64b80623af3ec3eca1e35331dc</Sha>
282282
</Dependency>
283-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="6.0.0-beta.21460.7">
283+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="6.0.0-beta.21473.5">
284284
<Uri>https://github.com/dotnet/arcade</Uri>
285-
<Sha>7324320f814152b72295946847ca72413507705a</Sha>
285+
<Sha>c575da80f465e0b5fb98f416be92bb98b2f54b41</Sha>
286286
<SourceBuild RepoName="arcade" ManagedOnly="true" />
287287
</Dependency>
288-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="6.0.0-beta.21460.7">
288+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="6.0.0-beta.21473.5">
289289
<Uri>https://github.com/dotnet/arcade</Uri>
290-
<Sha>7324320f814152b72295946847ca72413507705a</Sha>
290+
<Sha>c575da80f465e0b5fb98f416be92bb98b2f54b41</Sha>
291291
</Dependency>
292-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Templating" Version="6.0.0-beta.21460.7">
292+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Templating" Version="6.0.0-beta.21473.5">
293293
<Uri>https://github.com/dotnet/arcade</Uri>
294-
<Sha>7324320f814152b72295946847ca72413507705a</Sha>
294+
<Sha>c575da80f465e0b5fb98f416be92bb98b2f54b41</Sha>
295295
</Dependency>
296-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="6.0.0-beta.21460.7">
296+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="6.0.0-beta.21473.5">
297297
<Uri>https://github.com/dotnet/arcade</Uri>
298-
<Sha>7324320f814152b72295946847ca72413507705a</Sha>
298+
<Sha>c575da80f465e0b5fb98f416be92bb98b2f54b41</Sha>
299299
</Dependency>
300300
</ToolsetDependencies>
301301
</Dependencies>

eng/Versions.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@
134134
<MicrosoftEntityFrameworkCoreVersion>6.0.0-rc.2.21472.20</MicrosoftEntityFrameworkCoreVersion>
135135
<MicrosoftEntityFrameworkCoreDesignVersion>6.0.0-rc.2.21472.20</MicrosoftEntityFrameworkCoreDesignVersion>
136136
<!-- Packages from dotnet/arcade -->
137-
<MicrosoftDotNetBuildTasksInstallersVersion>6.0.0-beta.21460.7</MicrosoftDotNetBuildTasksInstallersVersion>
138-
<MicrosoftDotNetBuildTasksTemplatingVersion>6.0.0-beta.21460.7</MicrosoftDotNetBuildTasksTemplatingVersion>
137+
<MicrosoftDotNetBuildTasksInstallersVersion>6.0.0-beta.21473.5</MicrosoftDotNetBuildTasksInstallersVersion>
138+
<MicrosoftDotNetBuildTasksTemplatingVersion>6.0.0-beta.21473.5</MicrosoftDotNetBuildTasksTemplatingVersion>
139139
</PropertyGroup>
140140
<!--
141141

eng/common/tools.ps1

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -709,14 +709,7 @@ function MSBuild() {
709709
Write-PipelineSetVariable -Name 'NUGET_PLUGIN_REQUEST_TIMEOUT_IN_SECONDS' -Value '20'
710710
}
711711

712-
if ($ci) {
713-
$env:NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY = 'true'
714-
$env:NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT = 6
715-
$env:NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS = 1000
716-
Write-PipelineSetVariable -Name 'NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY' -Value 'true'
717-
Write-PipelineSetVariable -Name 'NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT' -Value '6'
718-
Write-PipelineSetVariable -Name 'NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS' -Value '1000'
719-
}
712+
Enable-Nuget-EnhancedRetry
720713

721714
$toolsetBuildProject = InitializeToolset
722715
$basePath = Split-Path -parent $toolsetBuildProject
@@ -764,6 +757,8 @@ function MSBuild-Core() {
764757
}
765758
}
766759

760+
Enable-Nuget-EnhancedRetry
761+
767762
$buildTool = InitializeBuildTool
768763

769764
$cmdArgs = "$($buildTool.Command) /m /nologo /clp:Summary /v:$verbosity /nr:$nodeReuse /p:ContinuousIntegrationBuild=$ci"
@@ -904,3 +899,18 @@ function Try-LogClientIpAddress()
904899
Write-Host "Unable to get this machine's effective IP address for logging: $_"
905900
}
906901
}
902+
903+
#
904+
# If $ci flag is set, turn on (and log that we did) special environment variables for improved Nuget client retry logic.
905+
#
906+
function Enable-Nuget-EnhancedRetry() {
907+
if ($ci) {
908+
Write-Host "Setting NUGET enhanced retry environment variables"
909+
$env:NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY = 'true'
910+
$env:NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT = 6
911+
$env:NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS = 1000
912+
Write-PipelineSetVariable -Name 'NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY' -Value 'true'
913+
Write-PipelineSetVariable -Name 'NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT' -Value '6'
914+
Write-PipelineSetVariable -Name 'NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS' -Value '1000'
915+
}
916+
}

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
},
3030
"msbuild-sdks": {
3131
"Yarn.MSBuild": "1.22.10",
32-
"Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21460.7",
33-
"Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21460.7"
32+
"Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21473.5",
33+
"Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21473.5"
3434
}
3535
}

0 commit comments

Comments
 (0)