Browse Source

Update dependencies from https://github.com/dotnet/arcade build 20230316.5 (#1558)

[main] Update dependencies from dotnet/arcade
pull/1559/head
dotnet-maestro[bot] 3 years ago
committed by GitHub
parent
commit
01c81d5fa2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 20
      eng/Version.Details.xml
  2. 14
      eng/common/tools.ps1
  3. 2
      global.json

20
eng/Version.Details.xml

@ -3,25 +3,25 @@
<ProductDependencies>
</ProductDependencies>
<ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23164.2">
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23166.5">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>0edf826d30ecfec312a2f36c3a688ef2449fa6b0</Sha>
<Sha>a1359bf50fe84f9b1cd01d611c9186820126df9b</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.Build.Tasks.Feed" Version="8.0.0-beta.23164.2">
<Dependency Name="Microsoft.DotNet.Build.Tasks.Feed" Version="8.0.0-beta.23166.5">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>0edf826d30ecfec312a2f36c3a688ef2449fa6b0</Sha>
<Sha>a1359bf50fe84f9b1cd01d611c9186820126df9b</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.SignTool" Version="8.0.0-beta.23164.2">
<Dependency Name="Microsoft.DotNet.SignTool" Version="8.0.0-beta.23166.5">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>0edf826d30ecfec312a2f36c3a688ef2449fa6b0</Sha>
<Sha>a1359bf50fe84f9b1cd01d611c9186820126df9b</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.23164.2">
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.23166.5">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>0edf826d30ecfec312a2f36c3a688ef2449fa6b0</Sha>
<Sha>a1359bf50fe84f9b1cd01d611c9186820126df9b</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.SwaggerGenerator.MSBuild" Version="8.0.0-beta.23164.2">
<Dependency Name="Microsoft.DotNet.SwaggerGenerator.MSBuild" Version="8.0.0-beta.23166.5">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>0edf826d30ecfec312a2f36c3a688ef2449fa6b0</Sha>
<Sha>a1359bf50fe84f9b1cd01d611c9186820126df9b</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.Maestro.Client" Version="1.1.0-beta.19556.4">
<Uri>https://github.com/dotnet/arcade-services</Uri>

14
eng/common/tools.ps1

@ -913,11 +913,13 @@ if (!$disableConfigureToolsetImport) {
function Enable-Nuget-EnhancedRetry() {
if ($ci) {
Write-Host "Setting NUGET enhanced retry environment variables"
$env:NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY = 'true'
$env:NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT = 6
$env:NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS = 1000
Write-PipelineSetVariable -Name 'NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY' -Value 'true'
Write-PipelineSetVariable -Name 'NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT' -Value '6'
Write-PipelineSetVariable -Name 'NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS' -Value '1000'
$env:NUGET_ENABLE_ENHANCED_HTTP_RETRY = 'true'
$env:NUGET_ENHANCED_MAX_NETWORK_TRY_COUNT = 6
$env:NUGET_ENHANCED_NETWORK_RETRY_DELAY_MILLISECONDS = 1000
$env:NUGET_RETRY_HTTP_429 = 'true'
Write-PipelineSetVariable -Name 'NUGET_ENABLE_ENHANCED_HTTP_RETRY' -Value 'true'
Write-PipelineSetVariable -Name 'NUGET_ENHANCED_MAX_NETWORK_TRY_COUNT' -Value '6'
Write-PipelineSetVariable -Name 'NUGET_ENHANCED_NETWORK_RETRY_DELAY_MILLISECONDS' -Value '1000'
Write-PipelineSetVariable -Name 'NUGET_RETRY_HTTP_429' -Value 'true'
}
}

2
global.json

@ -14,6 +14,6 @@
}
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23164.2"
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23166.5"
}
}

Loading…
Cancel
Save