From aa0b6671424ce771312e47daf57e6bbe8c343860 Mon Sep 17 00:00:00 2001 From: riperiperi Date: Mon, 30 Mar 2020 14:46:33 +0100 Subject: [PATCH] Pass /restore to IDE build. --- azure-pipelines.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 119c2ae3d..86583b978 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -29,13 +29,8 @@ steps: inputs: command: 'restore' restoreSolution: '$(solution)' - feedsToUse: 'select' - restoreDirectory: '$(System.DefaultWorkingDirectory)/packages' -- task: NuGetCommand@2 - inputs: - command: 'restore' - restoreSolution: '$(solution)' + - powershell: cd ./TSOClient/FSO.SimAntics.JIT.Roslyn/; dotnet restore; cd ../../ name: RestoreRoslyn @@ -46,7 +41,7 @@ steps: inputs: solution: '$(solution)' platform: '$(buildPlatform)' - msbuildArgs: '/t:FSO_IDE /p:Configuration=Release;OutDir=$(Build.ArtifactStagingDirectory)/client' + msbuildArgs: '/restore /t:FSO_IDE /p:Configuration=Release;OutDir=$(Build.ArtifactStagingDirectory)/client' - task: VSBuild@1 name: BuildServer