Skip to content

Commit

Permalink
Install net9 sdk in signing pipeline test prebuild step (dotnet#3043)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdaigle authored Nov 27, 2024
1 parent ce5be66 commit 2881205
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions eng/pipelines/common/templates/steps/pre-build-step.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@
# See the LICENSE file in the project root for more information. #
#################################################################################
steps:
- task: UseDotNet@2
displayName: 'Use .NET 9.x sdk'
inputs:
packageType: sdk
version: '9.x'

- task: UseDotNet@2
displayName: 'Install .NET 8.x runtime'
inputs:
packageType: runtime
version: '8.x'

- script: SET
displayName: 'Print Environment Variables'

Expand Down

0 comments on commit 2881205

Please sign in to comment.