Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
abatishchev authored Jan 1, 2022
1 parent b98226a commit 0198f34
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .pipelines/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ variables:

steps:
- task: UseDotNet@2
displayName: 'Use .NET Core 3.1.x'
displayName: 'Install .NET Core 3.1.x'
inputs:
packageType: sdk
version: '3.1.x'
installationPath: '$(Agent.ToolsDirectory)/dotnet'

- task: UseDotNet@2
displayName: 'Use .NET 5.0.x'
displayName: 'Install .NET 5.0.x'
inputs:
packageType: sdk
version: '5.0.x'
installationPath: '$(Agent.ToolsDirectory)/dotnet'

- task: UseDotNet@2
displayName: 'Use .NET 6.0.x'
displayName: 'Install .NET 6.0.x'
inputs:
packageType: sdk
version: '6.0.x'
Expand Down Expand Up @@ -70,7 +70,7 @@ steps:
failTaskOnFailedTests: true

- task: DotNetCoreCLI@2
displayName: 'Create NuGet package'
displayName: 'Create NuGet packages'
inputs:
command: pack
packagesToPack: 'src/**/*.csproj'
Expand Down

0 comments on commit 0198f34

Please sign in to comment.