2021-05-13 20:24:11 +02:00
|
|
|
# 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)'
|
2021-07-01 09:24:27 +02:00
|
|
|
solutionName : 'TINK.sln'
|
2021-05-13 20:24:11 +02:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- task: NuGetToolInstaller@1
|
|
|
|
|
|
|
|
- task: NuGetCommand@2
|
|
|
|
inputs:
|
2021-07-01 09:24:27 +02:00
|
|
|
restoreSolution: '$(solutionName)'
|
2021-05-13 20:24:11 +02:00
|
|
|
|
|
|
|
- task: XamarinAndroid@1
|
|
|
|
inputs:
|
|
|
|
projectFile: '**/*droid*.csproj'
|
|
|
|
outputDirectory: '$(outputDirectory)'
|
|
|
|
configuration: '$(buildConfiguration)'
|