Skip to content

Commit

Permalink
Build improvements (Updated dotnet core)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpalme committed Jun 12, 2019
1 parent 9a9a0cc commit 52e58a4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
19 changes: 18 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net

pool:
vmImage: 'VS2017-Win2016'
vmImage: 'windows-2019'

variables:
solution: '**/*.sln'
Expand All @@ -27,6 +27,23 @@ steps:
command: custom
custom: '--version'

- task: DotNetCoreInstaller@0
displayName: 'Use .NET Core SDK 2.2.300'
inputs:
version: 2.2.300

- task: DotNetCoreCLI@2
displayName: 'dotnet info'
inputs:
command: custom
custom: '--info'

- task: DotNetCoreCLI@2
displayName: 'dotnet version'
inputs:
command: custom
custom: '--version'

- task: NuGetToolInstaller@0
displayName: 'Use NuGet 4.9.3'
inputs:
Expand Down
2 changes: 1 addition & 1 deletion src/global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "2.2.104"
"version": "2.2.300"
}
}

0 comments on commit 52e58a4

Please sign in to comment.