From f0c9ce2ff0180cc500017e4e07bc429343ebcbb0 Mon Sep 17 00:00:00 2001 From: Robert Beekman Date: Mon, 16 Nov 2020 00:04:46 +0100 Subject: [PATCH] Update azure-pipelines.yml for Azure Pipelines --- ci/azure-pipelines.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/ci/azure-pipelines.yml b/ci/azure-pipelines.yml index 645e5732b..25033ffdf 100644 --- a/ci/azure-pipelines.yml +++ b/ci/azure-pipelines.yml @@ -17,6 +17,14 @@ steps: - checkout: self path: s/Artemis +- task: UseDotNet@2 + displayName: 'Install .Net 5 SDK' + inputs: + packageType: 'sdk' + version: '5.0.100' + +- task: NuGetToolInstaller@1 + - task: DownloadPipelineArtifact@2 inputs: buildType: 'specific' @@ -26,11 +34,10 @@ steps: artifactName: 'RGB.NET development build' targetPath: '$(Pipeline.Workspace)/s/RGB.NET/bin/netstandard2.0' -- task: DotNetCoreCLI@2 +- task: NuGetCommand@2 + displayName: 'NuGet restore Artemis' inputs: - command: 'restore' - projects: '$(artemisSolution)' - feedsToUse: 'config' + restoreSolution: '$(artemisSolution)' # - task: ResharperCli@2 # inputs: