Skip to content

Commit 53c781a

Browse files
authored
Install net9 sdk in signing pipeline test prebuild step (#3044)
1 parent d78893e commit 53c781a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

eng/pipelines/common/templates/steps/pre-build-step.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@
44
# See the LICENSE file in the project root for more information. #
55
#################################################################################
66
steps:
7+
- task: UseDotNet@2
8+
displayName: 'Use .NET 9.x sdk'
9+
inputs:
10+
packageType: sdk
11+
version: '9.x'
12+
13+
- task: UseDotNet@2
14+
displayName: 'Install .NET 8.x runtime'
15+
inputs:
16+
packageType: runtime
17+
version: '8.x'
18+
719
- script: SET
820
displayName: 'Print Environment Variables'
921

0 commit comments

Comments
 (0)