Skip to content

Commit

Permalink
Install all .NET versions in pipeline to fix run tests task
Browse files Browse the repository at this point in the history
  • Loading branch information
msbw2 committed Nov 18, 2024
1 parent 5e4a389 commit 0f6b9cd
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions build/template-install-dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
#install dotnet core

steps:
- task: UseDotNet@2
displayName: 'Use .NET SDK 3.1'
inputs:
version: 3.1.x

- task: UseDotNet@2
displayName: 'Use .NET SDK 6.0.x'
inputs:
version: 6.0.x

- task: UseDotNet@2
displayName: 'Use .NET SDK 7.0.x'
inputs:
version: 7.0.x

- task: UseDotNet@2
displayName: 'Use .NET SDK 8.0.x'
inputs:
version: 8.0.x

- task: UseDotNet@2
displayName: 'Use .NET SDK 9.0.x'
inputs:
Expand Down

0 comments on commit 0f6b9cd

Please sign in to comment.