From e5cac21f55c7f532362adb558021f9879f1486cd Mon Sep 17 00:00:00 2001 From: Shannon Mitchell <110545095+shannonmae80@users.noreply.github.com> Date: Mon, 15 Aug 2022 03:18:38 -0400 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..802e041 --- /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: +- 17763-v7 + +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)'