Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@ pool:
vmImage: 'windows-latest'

steps:

- task: UseDotNet@2
displayName: 'Install .NET Core SDK'
inputs:
version: 3.x
performMultiLevelLookup: true
includePreviewVersions: true # Required for preview versions


- task: DotNetCoreCLI@2
displayName: DotNetCore build
inputs:
Expand All @@ -28,7 +37,7 @@ steps:
displayName: NuGet install
inputs:
checkLatest: true

- task: DotNetCoreCLI@2
displayName: NuGet pack
inputs:
Expand Down