forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Temporarily re-enable .NET 5 SDK install step (Azure#18298)" (A…
…zure#18324) This reverts commit 21ebca7.
- Loading branch information
1 parent
13c6ff3
commit 743fd36
Showing
1 changed file
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# All required SDKs/runtimes are available on DevOps agents | ||
#steps: [] | ||
steps: [] | ||
# Installation steps need to be uncommented when switching to a newer SDK that's not available on DevOps agents | ||
steps: | ||
- task: UseDotNet@2 | ||
displayName: 'Use .NET Core SDK' | ||
inputs: | ||
useGlobalJson: true | ||
performMultiLevelLookup: true | ||
- task: UseDotNet@2 | ||
condition: ne(variables['Agent.OS'], 'Windows_NT') # Windows supports MultiLevelLookup and doesn't need explicit framework installation | ||
displayName: 'Use .NET Core 2.1 runtime' | ||
inputs: | ||
packageType: runtime | ||
version: "2.1.x" | ||
#steps: | ||
# - task: UseDotNet@2 | ||
# displayName: 'Use .NET Core SDK' | ||
# inputs: | ||
# useGlobalJson: true | ||
# performMultiLevelLookup: true | ||
# - task: UseDotNet@2 | ||
# condition: ne(variables['Agent.OS'], 'Windows_NT') # Windows supports MultiLevelLookup and doesn't need explicit framework installation | ||
# displayName: 'Use .NET Core 2.1 runtime' | ||
# inputs: | ||
# packageType: runtime | ||
# version: "2.1.x" |