From 084fc988a79ba56a7d957f98547b15fb7b5545ef Mon Sep 17 00:00:00 2001 From: Robin Date: Tue, 3 Mar 2020 13:09:29 +0100 Subject: [PATCH] Fixing azure-pipelines.yml (again) --- azure-pipelines.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index dc387030b..7d2f5177b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -19,7 +19,7 @@ stages: vmImage: 'Windows-latest' variables: - solution: '**/src/*.sln' + solution: 'Greenshot.sln' buildPlatform: 'Any CPU' buildConfiguration: 'Release' @@ -29,12 +29,13 @@ stages: - task: NuGetCommand@2 displayName: NuGet restore inputs: + command: 'restore' restoreSolution: '$(solution)' feedsToUse: config - task: MSBuild@1 inputs: - solution: 'Greenshot.sln' + solution: '$(solution)' #msbuildLocationMethod: 'version' # Optional. Options: version, location #msbuildVersion: 'latest' # Optional. Options: latest, 16.0, 15.0, 14.0, 12.0, 4.0 #msbuildArchitecture: 'x86' # Optional. Options: x86, x64