Skip to content

Commit 04c21b6

Browse files
committed
Set up CI with Azure Pipelines
[skip ci]
1 parent c312de1 commit 04c21b6

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

azure-pipelines.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Xamarin.Android
2+
# Build a Xamarin.Android project.
3+
# Add steps that test, sign, and distribute an app, save build artifacts, and more:
4+
# https://docs.microsoft.com/azure/devops/pipelines/languages/xamarin
5+
6+
trigger:
7+
- master
8+
9+
pool:
10+
vmImage: 'macos-latest'
11+
12+
variables:
13+
buildConfiguration: 'Release'
14+
outputDirectory: '$(build.binariesDirectory)/$(buildConfiguration)'
15+
16+
steps:
17+
- task: NuGetToolInstaller@0
18+
19+
- task: NuGetCommand@2
20+
inputs:
21+
restoreSolution: '**/*.sln'
22+
23+
- task: XamarinAndroid@1
24+
inputs:
25+
projectFile: '**/*droid*.csproj'
26+
outputDirectory: '$(outputDirectory)'
27+
configuration: '$(buildConfiguration)'

0 commit comments

Comments
 (0)