From 60c193a35699afb8b3ef8103d7bde2cdb573f6f9 Mon Sep 17 00:00:00 2001 From: Michael Gordeev Date: Tue, 28 Jan 2020 03:40:52 +0300 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..da6ac68 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,27 @@ +# 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: 'windows-latest' + +variables: + buildConfiguration: 'Release' + outputDirectory: '$(build.binariesDirectory)/$(buildConfiguration)' + +steps: +- task: NuGetToolInstaller@1 + +- task: NuGetCommand@2 + inputs: + restoreSolution: '**/*.sln' + +- task: XamarinAndroid@1 + inputs: + projectFile: '**/**.csproj' + outputDirectory: '$(outputDirectory)' + configuration: '$(buildConfiguration)'