Skip to content

Commit

Permalink
Merge branch 'v1.5' into v2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AArnott committed Jun 2, 2019
2 parents 8f727d4 + d64f9bc commit 5a6cc9b
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions azure-pipelines/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
steps:
- task: DotNetCoreInstaller@0
displayName: Install .NET Core SDK
- task: UseDotNet@2
displayName: Install .NET Core 1.0.x
inputs:
packageType: runtime
version: 1.0.x

- task: UseDotNet@2
displayName: Install .NET Core 2.0.x
inputs:
packageType: runtime
version: 2.0.x

- task: UseDotNet@2
displayName: Install .NET Core 2.1.x
inputs:
packageType: runtime
version: 2.1.x

- task: UseDotNet@2
displayName: Install .NET Core SDK 2.2.104
inputs:
packageType: sdk
version: 2.2.104
Expand All @@ -15,8 +33,6 @@ steps:
echo ##vso[task.setvariable variable=PATH]%Path%;$(Build.SourcesDirectory)
workingDirectory: src
displayName: Set build number
env:
DOTNET_MULTILEVEL_LOOKUP: 0 # workaround .NET CLI bug that shows up in Azure Pipelines

- task: PowerShell@2
inputs:
Expand Down

0 comments on commit 5a6cc9b

Please sign in to comment.