mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 02:26:29 +01:00
8bebadef85
[skip ci]
27 lines
634 B
YAML
27 lines
634 B
YAML
# Xamarin.Android
|
|
# Build a Xamarin.Android project.
|
|
# Add steps that test, sign, and distribute an app, save build artifacts, and more:
|
|
# https://docs.microsoft.com/azure/devops/pipelines/languages/xamarin
|
|
|
|
trigger:
|
|
- master
|
|
|
|
pool:
|
|
vmImage: 'macos-latest'
|
|
|
|
variables:
|
|
buildConfiguration: 'Release'
|
|
outputDirectory: '$(build.binariesDirectory)/$(buildConfiguration)'
|
|
|
|
steps:
|
|
- task: NuGetToolInstaller@1
|
|
|
|
- task: NuGetCommand@2
|
|
inputs:
|
|
restoreSolution: '**/*.sln'
|
|
|
|
- task: XamarinAndroid@1
|
|
inputs:
|
|
projectFile: '**/*droid*.csproj'
|
|
outputDirectory: '$(outputDirectory)'
|
|
configuration: '$(buildConfiguration)'
|