We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8954fa commit 833b21dCopy full SHA for 833b21d
1 file changed
azure-pipelines.yaml
@@ -1,16 +1,22 @@
1
strategy:
2
matrix:
3
linux:
4
- imageName: 'ubuntu-20.04'
+ imageName: 'ubuntu-latest'
5
mac:
6
- imageName: 'macos-10.15'
+ imageName: 'macos-latest'
7
windows:
8
- imageName: 'windows-2022'
+ imageName: 'windows-latest'
9
10
pool:
11
vmImage: $(imageName)
12
13
steps:
14
+- task: UseDotNet@2
15
+ displayName: 'Use .NET SDK 6.0.x'
16
+ inputs:
17
+ packageType: sdk
18
+ version: '6.0.x'
19
+
20
- task: UseDotNet@2
21
displayName: 'Use .NET Core sdk'
22
inputs:
0 commit comments