From 78648afdf668452bb0c7b4db62cfccd7c97ee0cd Mon Sep 17 00:00:00 2001 From: Eddy Nakamura Date: Tue, 14 Jul 2020 13:47:51 -0300 Subject: [PATCH] Adding step to add dotnet version 2.1.x (#813) * Adding step to add dotnet version 2.1.x * updating displayName --- .vsts/ci-myget-update.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.vsts/ci-myget-update.yml b/.vsts/ci-myget-update.yml index ed0d7a7c9..94a4e3473 100644 --- a/.vsts/ci-myget-update.yml +++ b/.vsts/ci-myget-update.yml @@ -1,7 +1,8 @@ # CI build with the upload to MyGet variables: - DotNetVersion: "3.1.101" + DotNetVersion2: "2.1.x" + DotNetVersion3: "3.1.x" trigger: branches: @@ -16,9 +17,14 @@ pool: steps: - task: UseDotNet@2 - displayName: force use of desired dotnet version + displayName: force use of dotnet 2.1.x inputs: - version: $(DotNetVersion) + version: $(DotNetVersion2) + +- task: UseDotNet@2 + displayName: force use of dotnet 3.1.x + inputs: + version: $(DotNetVersion3) # "restore" is run automatically by "build" - task: VSBuild@1