You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: eng/pipelines/templates/steps/install-dotnet.yml
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -11,20 +11,23 @@ steps:
11
11
# Installation steps need to be uncommented when switching to a newer SDK that's not available on DevOps agents
12
12
- task: UseDotNet@2
13
13
displayName: 'Use .NET Core SDK'
14
+
retryCountOnTaskFailure: 3
14
15
inputs:
15
16
useGlobalJson: true
16
17
performMultiLevelLookup: true
17
18
# test-proxy requires ASP.NET Core 5.0 runtime
18
19
- task: UseDotNet@2
19
20
condition: and(succeeded(), ne(variables['Agent.OS'], 'Windows_NT')) # Windows supports MultiLevelLookup and doesn't need explicit framework installation
20
21
displayName: 'Use .NET Core 5.0 SDK'
22
+
retryCountOnTaskFailure: 3
21
23
inputs:
22
24
packageType: sdk
23
25
performMultiLevelLookup: true
24
26
version: "5.0.x"
25
27
- task: UseDotNet@2
26
28
condition: and(succeeded(), ne(variables['Agent.OS'], 'Windows_NT')) # Windows supports MultiLevelLookup and doesn't need explicit framework installation
27
29
displayName: 'Use .NET Core 3.1 SDK'
30
+
retryCountOnTaskFailure: 3
28
31
inputs:
29
32
# AspNetCore runtime pack can't be installed outside of SDK and we need it for intergation tests
0 commit comments