<insert typical build and deployment commit message for a possible fix here>

This commit is contained in:
Robin 2020-11-17 20:55:50 +01:00
commit 174f26ad74

View file

@ -16,7 +16,7 @@ pool:
vmImage: 'Windows-latest' vmImage: 'Windows-latest'
variables: variables:
solution: '**/*.sln' solution: '**/Greenshot-Full.sln'
buildPlatform: 'Any CPU' buildPlatform: 'Any CPU'
buildConfiguration: 'Release' buildConfiguration: 'Release'
targetFramework: 'net5.0-windows' targetFramework: 'net5.0-windows'
@ -34,7 +34,7 @@ steps:
displayName: 'dotnet restore' displayName: 'dotnet restore'
inputs: inputs:
command: 'restore' command: 'restore'
projects: '**/*.csproj' projects: ${solution}
feedsToUse: 'config' feedsToUse: 'config'
- task: DotNetCoreCLI@2 - task: DotNetCoreCLI@2