File tree 5 files changed +31
-16
lines changed
5 files changed +31
-16
lines changed Original file line number Diff line number Diff line change 309
309
<Uri >https://github.com/dotnet/runtime</Uri >
310
310
<Sha >5078dd61a81c88dbdd131a77b8148b4dee3803fa</Sha >
311
311
</Dependency >
312
- <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 6.0.0-beta.20616.18 " >
312
+ <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 6.0.0-beta.20621.12 " >
313
313
<Uri >https://github.com/dotnet/arcade</Uri >
314
- <Sha >26b005488dd7ddf6356873cb01a7b763a82a9622 </Sha >
314
+ <Sha >3ba79fbd73d6765b67d0f75ac9dac148d6bea346 </Sha >
315
315
</Dependency >
316
- <Dependency Name =" Microsoft.DotNet.Build.Tasks.Installers" Version =" 6.0.0-beta.20616.18 " >
316
+ <Dependency Name =" Microsoft.DotNet.Build.Tasks.Installers" Version =" 6.0.0-beta.20621.12 " >
317
317
<Uri >https://github.com/dotnet/arcade</Uri >
318
- <Sha >26b005488dd7ddf6356873cb01a7b763a82a9622 </Sha >
318
+ <Sha >3ba79fbd73d6765b67d0f75ac9dac148d6bea346 </Sha >
319
319
</Dependency >
320
- <Dependency Name =" Microsoft.DotNet.Helix.Sdk" Version =" 6.0.0-beta.20616.18 " >
320
+ <Dependency Name =" Microsoft.DotNet.Helix.Sdk" Version =" 6.0.0-beta.20621.12 " >
321
321
<Uri >https://github.com/dotnet/arcade</Uri >
322
- <Sha >26b005488dd7ddf6356873cb01a7b763a82a9622 </Sha >
322
+ <Sha >3ba79fbd73d6765b67d0f75ac9dac148d6bea346 </Sha >
323
323
</Dependency >
324
324
</ToolsetDependencies >
325
325
</Dependencies >
Original file line number Diff line number Diff line change 141
141
<MicrosoftEntityFrameworkCoreVersion >6.0.0-alpha.1.20622.2</MicrosoftEntityFrameworkCoreVersion >
142
142
<MicrosoftEntityFrameworkCoreDesignVersion >6.0.0-alpha.1.20622.2</MicrosoftEntityFrameworkCoreDesignVersion >
143
143
<!-- Packages from dotnet/arcade -->
144
- <MicrosoftDotNetBuildTasksInstallersVersion >6.0.0-beta.20616.18 </MicrosoftDotNetBuildTasksInstallersVersion >
144
+ <MicrosoftDotNetBuildTasksInstallersVersion >6.0.0-beta.20621.12 </MicrosoftDotNetBuildTasksInstallersVersion >
145
145
</PropertyGroup >
146
146
<!--
147
147
Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ try {
22
22
$optionalParams = [System.Collections.ArrayList ]::new()
23
23
24
24
if (" " -ne $ArtifactsPublishingAdditionalParameters ) {
25
- $optionalParams.Add (" artifact-publishing-parameters" ) | Out-Null
25
+ $optionalParams.Add (" -- artifact-publishing-parameters" ) | Out-Null
26
26
$optionalParams.Add ($ArtifactsPublishingAdditionalParameters ) | Out-Null
27
27
}
28
28
29
29
if (" " -ne $SymbolPublishingAdditionalParameters ) {
30
- $optionalParams.Add (" symbol-publishing-parameters" ) | Out-Null
30
+ $optionalParams.Add (" -- symbol-publishing-parameters" ) | Out-Null
31
31
$optionalParams.Add ($SymbolPublishingAdditionalParameters ) | Out-Null
32
32
}
33
33
Original file line number Diff line number Diff line change @@ -439,11 +439,26 @@ function LocateVisualStudio([object]$vsRequirements = $null){
439
439
if (! (Test-Path $vsWhereExe )) {
440
440
Create- Directory $vsWhereDir
441
441
Write-Host ' Downloading vswhere'
442
- try {
443
- Invoke-WebRequest " https://netcorenativeassets.blob.core.windows.net/resource-packages/external/windows/vswhere/$vswhereVersion /vswhere.exe" - OutFile $vswhereExe
444
- }
445
- catch {
446
- Write-PipelineTelemetryError - Category ' InitializeToolset' - Message $_
442
+ $maxRetries = 5
443
+ $retries = 1
444
+
445
+ while ($true ) {
446
+ try {
447
+ Invoke-WebRequest " https://netcorenativeassets.blob.core.windows.net/resource-packages/external/windows/vswhere/$vswhereVersion /vswhere.exe" - OutFile $vswhereExe
448
+ break
449
+ }
450
+ catch {
451
+ Write-PipelineTelemetryError - Category ' InitializeToolset' - Message $_
452
+ }
453
+
454
+ if (++ $retries -le $maxRetries ) {
455
+ $delayInSeconds = [math ]::Pow(2 , $retries ) - 1 # Exponential backoff
456
+ Write-Host " Retrying. Waiting for $delayInSeconds seconds before next attempt ($retries of $maxRetries )."
457
+ Start-Sleep - Seconds $delayInSeconds
458
+ }
459
+ else {
460
+ Write-PipelineTelemetryError - Category ' InitializeToolset' - Message " Unable to download file in $maxRetries attempts."
461
+ }
447
462
}
448
463
}
449
464
Original file line number Diff line number Diff line change 30
30
},
31
31
"msbuild-sdks" : {
32
32
"Yarn.MSBuild" : " 1.22.10" ,
33
- "Microsoft.DotNet.Arcade.Sdk" : " 6.0.0-beta.20616.18 " ,
34
- "Microsoft.DotNet.Helix.Sdk" : " 6.0.0-beta.20616.18 "
33
+ "Microsoft.DotNet.Arcade.Sdk" : " 6.0.0-beta.20621.12 " ,
34
+ "Microsoft.DotNet.Helix.Sdk" : " 6.0.0-beta.20621.12 "
35
35
}
36
36
}
You can’t perform that action at this time.
0 commit comments