diff options
| author | Anthony Lavado <anthony@lavado.ca> | 2020-11-17 00:17:08 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-17 00:17:08 -0500 |
| commit | c8e41adfeb9af55edb64f0ab34917e4636d7ef5f (patch) | |
| tree | 4df97d5fbd504e4edec429e3a9a551d8230a963b | |
| parent | ad719b7ac6d5235a263bdcdb1363fa47a0b692a0 (diff) | |
| parent | c770b9e0c68661b5e8f4ef8289a6ef089799d6ec (diff) | |
Merge pull request #4500 from oddstr13/nuget-bump-net5.0
Use .NET 5.0 in Nuget pipeline
| -rw-r--r-- | .ci/azure-pipelines-package.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.ci/azure-pipelines-package.yml b/.ci/azure-pipelines-package.yml index 0dc604a79..d478516b8 100644 --- a/.ci/azure-pipelines-package.yml +++ b/.ci/azure-pipelines-package.yml @@ -188,6 +188,12 @@ jobs: vmImage: 'ubuntu-latest' steps: + - task: UseDotNet@2 + displayName: 'Use .NET 5.0 sdk' + inputs: + packageType: 'sdk' + version: '5.0.x' + - task: DotNetCoreCLI@2 displayName: 'Build Stable Nuget packages' condition: startsWith(variables['Build.SourceBranch'], 'refs/tags/v') |
