From 174f26ad74b9df5e9c20ce52636a0626c120ce16 Mon Sep 17 00:00:00 2001 From: Robin Date: Tue, 17 Nov 2020 20:55:50 +0100 Subject: [PATCH] --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a2a4bb70e..c97a60ba0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -16,7 +16,7 @@ pool: vmImage: 'Windows-latest' variables: - solution: '**/*.sln' + solution: '**/Greenshot-Full.sln' buildPlatform: 'Any CPU' buildConfiguration: 'Release' targetFramework: 'net5.0-windows' @@ -34,7 +34,7 @@ steps: displayName: 'dotnet restore' inputs: command: 'restore' - projects: '**/*.csproj' + projects: ${solution} feedsToUse: 'config' - task: DotNetCoreCLI@2