From d638d4a3dcd7347a1f424193525a3777d339f12d Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Fri, 7 Feb 2020 15:08:54 +0100 Subject: [PATCH] possibly fix the pipeline --- azure-pipelines.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6a9684e..dbdb7cc 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -21,13 +21,18 @@ steps: inputs: restoreSolution: '$(solution)' -- task: VSBuild@1 +- task: DotNetCoreCLI@2 inputs: - solution: '$(solution)' - platform: '$(buildPlatform)' - configuration: '$(buildConfiguration)' + command: 'build' + projects: | + **/MLEM*.csproj + **/Demos.csproj + **/Demos.DesktopGL.csproj -- task: VSTest@2 +- task: XamarinAndroid@1 inputs: - platform: '$(buildPlatform)' - configuration: '$(buildConfiguration)' + projectFile: '**/*Android.csproj' + target: 'Release' + jdkOption: 'JDKVersion' + +