2021-03-18 19:41:34 +03:00
|
|
|
# Starter pipeline
|
|
|
|
# Start with a minimal pipeline that you can customize to build and deploy your code.
|
|
|
|
# Add steps that build, run tests, deploy, and more:
|
|
|
|
# https://aka.ms/yaml
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
- main
|
|
|
|
|
|
|
|
pool:
|
2021-03-18 19:45:53 +03:00
|
|
|
vmImage: macOS-latest
|
2021-03-18 19:41:34 +03:00
|
|
|
|
|
|
|
steps:
|
2021-03-18 19:45:53 +03:00
|
|
|
- script: dotnet restore build/Build.Microsoft.Maui.Graphics.Mac.sln
|
2021-03-18 19:41:34 +03:00
|
|
|
displayName: 'NuGet Restore'
|
|
|
|
|
|
|
|
- script: |
|
2021-03-18 19:56:47 +03:00
|
|
|
msbuild build/Build.Microsoft.Maui.Graphics.Mac.sln /verbosity:normal /t:Rebuild /p:Configuration=Release
|
2021-03-18 19:41:34 +03:00
|
|
|
displayName: 'Build'
|