File tree Expand file tree Collapse file tree 4 files changed +24
-4
lines changed Expand file tree Collapse file tree 4 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 3
3
<ProductDependencies >
4
4
</ProductDependencies >
5
5
<ToolsetDependencies >
6
- <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 6 .0.0-beta.21427.6 " >
6
+ <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 7 .0.0-beta.21453.2 " >
7
7
<Uri >https://github.com/dotnet/arcade</Uri >
8
- <Sha >474307e526160c813c9fd58060eb8356ccca6099 </Sha >
8
+ <Sha >0ec8dbacaefa7ccdb4bc96e120e07dc60c6eda98 </Sha >
9
9
<SourceBuild RepoName =" arcade" ManagedOnly =" true" />
10
10
</Dependency >
11
11
</ToolsetDependencies >
Original file line number Diff line number Diff line change @@ -709,6 +709,15 @@ function MSBuild() {
709
709
Write-PipelineSetVariable - Name ' NUGET_PLUGIN_REQUEST_TIMEOUT_IN_SECONDS' - Value ' 20'
710
710
}
711
711
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
+ }
720
+
712
721
$toolsetBuildProject = InitializeToolset
713
722
$basePath = Split-Path - parent $toolsetBuildProject
714
723
$possiblePaths = @ (
@@ -717,6 +726,8 @@ function MSBuild() {
717
726
(Join-Path $basePath (Join-Path $buildTool.Framework ' Microsoft.DotNet.Arcade.Sdk.dll' )),
718
727
(Join-Path $basePath (Join-Path netcoreapp2.1 ' Microsoft.DotNet.ArcadeLogging.dll' )),
719
728
(Join-Path $basePath (Join-Path netcoreapp2.1 ' Microsoft.DotNet.Arcade.Sdk.dll' ))
729
+ (Join-Path $basePath (Join-Path netcoreapp3.1 ' Microsoft.DotNet.ArcadeLogging.dll' )),
730
+ (Join-Path $basePath (Join-Path netcoreapp3.1 ' Microsoft.DotNet.Arcade.Sdk.dll' ))
720
731
)
721
732
$selectedPath = $null
722
733
foreach ($path in $possiblePaths ) {
Original file line number Diff line number Diff line change @@ -417,6 +417,13 @@ function MSBuild {
417
417
export NUGET_PLUGIN_REQUEST_TIMEOUT_IN_SECONDS=20
418
418
Write-PipelineSetVariable -name " NUGET_PLUGIN_HANDSHAKE_TIMEOUT_IN_SECONDS" -value " 20"
419
419
Write-PipelineSetVariable -name " NUGET_PLUGIN_REQUEST_TIMEOUT_IN_SECONDS" -value " 20"
420
+
421
+ export NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY=true
422
+ export NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT=6
423
+ export NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS=1000
424
+ Write-PipelineSetVariable -name " NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY" -value " true"
425
+ Write-PipelineSetVariable -name " NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT" -value " 6"
426
+ Write-PipelineSetVariable -name " NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS" -value " 1000"
420
427
fi
421
428
422
429
local toolset_dir=" ${_InitializeToolset%/* } "
@@ -427,6 +434,8 @@ function MSBuild {
427
434
possiblePaths+=( " $toolset_dir /$_InitializeBuildToolFramework /Microsoft.DotNet.Arcade.Sdk.dll" )
428
435
possiblePaths+=( " $toolset_dir /netcoreapp2.1/Microsoft.DotNet.ArcadeLogging.dll" )
429
436
possiblePaths+=( " $toolset_dir /netcoreapp2.1/Microsoft.DotNet.Arcade.Sdk.dll" )
437
+ possiblePaths+=( " $toolset_dir /netcoreapp3.1/Microsoft.DotNet.ArcadeLogging.dll" )
438
+ possiblePaths+=( " $toolset_dir /netcoreapp3.1/Microsoft.DotNet.Arcade.Sdk.dll" )
430
439
for path in " ${possiblePaths[@]} " ; do
431
440
if [[ -f $path ]]; then
432
441
selectedPath=$path
Original file line number Diff line number Diff line change 1
1
{
2
2
"tools" : {
3
- "dotnet" : " 6.0.100-rc.1.21379.2 " ,
3
+ "dotnet" : " 6.0.100-rc.1.21430.12 " ,
4
4
"vs" : {
5
5
"version" : " 16.8"
6
6
},
7
7
"xcopy-msbuild" : " 16.8.0-preview2.1"
8
8
},
9
9
"msbuild-sdks" : {
10
- "Microsoft.DotNet.Arcade.Sdk" : " 6 .0.0-beta.21427.6 "
10
+ "Microsoft.DotNet.Arcade.Sdk" : " 7 .0.0-beta.21453.2 "
11
11
}
12
12
}
You can’t perform that action at this time.
0 commit comments