From f9e71b0d5043261b3dd9d69fb1c398f1cb734edc Mon Sep 17 00:00:00 2001 From: intelligide Date: Mon, 23 Mar 2020 17:01:30 -0400 Subject: [PATCH] Fix CI pipeline --- azure-pipelines.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9af387e..80d0f35 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -5,22 +5,22 @@ pool: vmImage: 'windows-latest' variables: - solution: '**/*.sln' - buildPlatform: 'Any CPU' + solution: 'OpenMatch.csharp.sln' buildConfiguration: 'Release' steps: - - task: NuGetToolInstaller@1 - - - task: NuGetCommand@2 + - task: DotNetCoreCLI@2 inputs: - restoreSolution: '$(solution)' + command: 'restore' + projects: | + $(solution) - - task: VSBuild@1 + - task: DotNetCoreCLI@2 inputs: - solution: '$(solution)' - platform: '$(buildPlatform)' - configuration: '$(buildConfiguration)' + command: 'build' + projects: | + $(solution) + arguments: -c $(buildConfiguration) # - task: VSTest@2 # inputs: