1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-30 08:06:34 +02:00

possibly fix the pipeline

This commit is contained in:
Ellpeck 2020-02-07 15:08:54 +01:00
parent 5428be55ce
commit d638d4a3dc

View file

@ -21,13 +21,18 @@ steps:
inputs: inputs:
restoreSolution: '$(solution)' restoreSolution: '$(solution)'
- task: VSBuild@1 - task: DotNetCoreCLI@2
inputs: inputs:
solution: '$(solution)' command: 'build'
platform: '$(buildPlatform)' projects: |
configuration: '$(buildConfiguration)' **/MLEM*.csproj
**/Demos.csproj
**/Demos.DesktopGL.csproj
- task: VSTest@2 - task: XamarinAndroid@1
inputs: inputs:
platform: '$(buildPlatform)' projectFile: '**/*Android.csproj'
configuration: '$(buildConfiguration)' target: 'Release'
jdkOption: 'JDKVersion'