Skip to content

Commit 7d2400f

Browse files
Update dependencies from https://github.com/dotnet/arcade build 20230316.5 (#5047)
[main] Update dependencies from dotnet/arcade
1 parent c47d034 commit 7d2400f

File tree

4 files changed

+25
-23
lines changed

4 files changed

+25
-23
lines changed

eng/Version.Details.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@
44
<ProductDependencies>
55
</ProductDependencies>
66
<ToolsetDependencies>
7-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23164.2">
7+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23166.5">
88
<Uri>https://github.com/dotnet/arcade</Uri>
9-
<Sha>0edf826d30ecfec312a2f36c3a688ef2449fa6b0</Sha>
9+
<Sha>a1359bf50fe84f9b1cd01d611c9186820126df9b</Sha>
1010
</Dependency>
11-
<Dependency Name="Microsoft.DotNet.SignTool" Version="8.0.0-beta.23164.2">
11+
<Dependency Name="Microsoft.DotNet.SignTool" Version="8.0.0-beta.23166.5">
1212
<Uri>https://github.com/dotnet/arcade</Uri>
13-
<Sha>0edf826d30ecfec312a2f36c3a688ef2449fa6b0</Sha>
13+
<Sha>a1359bf50fe84f9b1cd01d611c9186820126df9b</Sha>
1414
</Dependency>
15-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.23164.2">
15+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.23166.5">
1616
<Uri>https://github.com/dotnet/arcade</Uri>
17-
<Sha>0edf826d30ecfec312a2f36c3a688ef2449fa6b0</Sha>
17+
<Sha>a1359bf50fe84f9b1cd01d611c9186820126df9b</Sha>
1818
</Dependency>
19-
<Dependency Name="Microsoft.DotNet.GenFacades" Version="8.0.0-beta.23164.2">
19+
<Dependency Name="Microsoft.DotNet.GenFacades" Version="8.0.0-beta.23166.5">
2020
<Uri>https://github.com/dotnet/arcade</Uri>
21-
<Sha>0edf826d30ecfec312a2f36c3a688ef2449fa6b0</Sha>
21+
<Sha>a1359bf50fe84f9b1cd01d611c9186820126df9b</Sha>
2222
</Dependency>
23-
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="8.0.0-beta.23164.2">
23+
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="8.0.0-beta.23166.5">
2424
<Uri>https://github.com/dotnet/arcade</Uri>
25-
<Sha>0edf826d30ecfec312a2f36c3a688ef2449fa6b0</Sha>
25+
<Sha>a1359bf50fe84f9b1cd01d611c9186820126df9b</Sha>
2626
</Dependency>
2727
</ToolsetDependencies>
2828
</Dependencies>

eng/Versions.props

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
</PropertyGroup>
2424
<!-- Arcade dependencies -->
2525
<PropertyGroup>
26-
<MicrosoftDotNetArcadeSdkPackageVersion>8.0.0-beta.23164.2</MicrosoftDotNetArcadeSdkPackageVersion>
27-
<MicrosoftDotNetHelixSdkPackageVersion>8.0.0-beta.23164.2</MicrosoftDotNetHelixSdkPackageVersion>
28-
<MicrosoftDotNetGenFacadesPackageVersion>8.0.0-beta.23164.2</MicrosoftDotNetGenFacadesPackageVersion>
29-
<MicrosoftDotNetXUnitExtensionsPackageVersion>8.0.0-beta.23164.2</MicrosoftDotNetXUnitExtensionsPackageVersion>
30-
<MicrosoftDotNetSignToolVersion>8.0.0-beta.23164.2</MicrosoftDotNetSignToolVersion>
26+
<MicrosoftDotNetArcadeSdkPackageVersion>8.0.0-beta.23166.5</MicrosoftDotNetArcadeSdkPackageVersion>
27+
<MicrosoftDotNetHelixSdkPackageVersion>8.0.0-beta.23166.5</MicrosoftDotNetHelixSdkPackageVersion>
28+
<MicrosoftDotNetGenFacadesPackageVersion>8.0.0-beta.23166.5</MicrosoftDotNetGenFacadesPackageVersion>
29+
<MicrosoftDotNetXUnitExtensionsPackageVersion>8.0.0-beta.23166.5</MicrosoftDotNetXUnitExtensionsPackageVersion>
30+
<MicrosoftDotNetSignToolVersion>8.0.0-beta.23166.5</MicrosoftDotNetSignToolVersion>
3131
</PropertyGroup>
3232
<!-- CoreFx dependencies -->
3333
<PropertyGroup>

eng/common/tools.ps1

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -913,11 +913,13 @@ if (!$disableConfigureToolsetImport) {
913913
function Enable-Nuget-EnhancedRetry() {
914914
if ($ci) {
915915
Write-Host "Setting NUGET enhanced retry environment variables"
916-
$env:NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY = 'true'
917-
$env:NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT = 6
918-
$env:NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS = 1000
919-
Write-PipelineSetVariable -Name 'NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY' -Value 'true'
920-
Write-PipelineSetVariable -Name 'NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT' -Value '6'
921-
Write-PipelineSetVariable -Name 'NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS' -Value '1000'
916+
$env:NUGET_ENABLE_ENHANCED_HTTP_RETRY = 'true'
917+
$env:NUGET_ENHANCED_MAX_NETWORK_TRY_COUNT = 6
918+
$env:NUGET_ENHANCED_NETWORK_RETRY_DELAY_MILLISECONDS = 1000
919+
$env:NUGET_RETRY_HTTP_429 = 'true'
920+
Write-PipelineSetVariable -Name 'NUGET_ENABLE_ENHANCED_HTTP_RETRY' -Value 'true'
921+
Write-PipelineSetVariable -Name 'NUGET_ENHANCED_MAX_NETWORK_TRY_COUNT' -Value '6'
922+
Write-PipelineSetVariable -Name 'NUGET_ENHANCED_NETWORK_RETRY_DELAY_MILLISECONDS' -Value '1000'
923+
Write-PipelineSetVariable -Name 'NUGET_RETRY_HTTP_429' -Value 'true'
922924
}
923925
}

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"version": "8.0.100-preview.1.23115.2"
1313
},
1414
"msbuild-sdks": {
15-
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23164.2",
16-
"Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.23164.2"
15+
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23166.5",
16+
"Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.23166.5"
1717
}
1818
}

0 commit comments

Comments
 (0)