mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2025-01-08 22:24:26 +01:00
Issues fixed.
This commit is contained in:
parent
6c498d02c6
commit
3e0bb64c31
1 changed files with 34 additions and 9 deletions
|
@ -1,17 +1,19 @@
|
||||||
# Xamarin.iOS
|
# Builds iOS version for all flavors of app:
|
||||||
# Build a Xamarin.iOS project.
|
# - sharee.bike
|
||||||
# Add steps that install certificates, test, sign, and distribute an app, save build artifacts, and more:
|
# - Lastenrad Bayern
|
||||||
# https://docs.microsoft.com/azure/devops/pipelines/languages/xamarin
|
# - Mein konrad
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
- master
|
- main
|
||||||
|
|
||||||
pool:
|
pool:
|
||||||
vmImage: 'macos-latest'
|
vmImage: 'macos-12'
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
buildConfiguration: 'Release'
|
buildConfiguration: 'Release'
|
||||||
solutionName : 'TINK.sln'
|
solutionNameIosLastenradBayern : 'LastenradBayern.sln'
|
||||||
|
solutionNameIosShareeBike : 'ShareeBike.sln'
|
||||||
|
solutionNameIosMeinKonrad : 'MeinKonrad.sln'
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
# To manually select a Xamarin SDK version on the Microsoft-hosted macOS agent,
|
# To manually select a Xamarin SDK version on the Microsoft-hosted macOS agent,
|
||||||
|
@ -29,11 +31,34 @@ steps:
|
||||||
|
|
||||||
- task: NuGetCommand@2
|
- task: NuGetCommand@2
|
||||||
inputs:
|
inputs:
|
||||||
restoreSolution: '$(solutionName)'
|
restoreSolution: '**/$(solutionNameIosLastenradBayern)'
|
||||||
- task: XamariniOS@2
|
- task: XamariniOS@2
|
||||||
inputs:
|
inputs:
|
||||||
solutionFile: '$(solutionName)'
|
solutionFile: '**/$(solutionNameIosLastenradBayern)'
|
||||||
configuration: '$(buildConfiguration)'
|
configuration: '$(buildConfiguration)'
|
||||||
packageApp: false
|
packageApp: false
|
||||||
buildForSimulator: true
|
buildForSimulator: true
|
||||||
runNugetRestore: false
|
runNugetRestore: false
|
||||||
|
|
||||||
|
- task: NuGetCommand@2
|
||||||
|
inputs:
|
||||||
|
restoreSolution: '**/$(solutionNameIosShareeBike)'
|
||||||
|
- task: XamariniOS@2
|
||||||
|
inputs:
|
||||||
|
solutionFile: '**/$(solutionNameIosShareeBike)'
|
||||||
|
configuration: '$(buildConfiguration)'
|
||||||
|
packageApp: false
|
||||||
|
buildForSimulator: true
|
||||||
|
runNugetRestore: false
|
||||||
|
|
||||||
|
- task: NuGetCommand@2
|
||||||
|
inputs:
|
||||||
|
restoreSolution: '**/$(solutionNameIosMeinKonrad)'
|
||||||
|
- task: XamariniOS@2
|
||||||
|
inputs:
|
||||||
|
solutionFile: '**/$(solutionNameIosMeinKonrad)'
|
||||||
|
configuration: '$(buildConfiguration)'
|
||||||
|
packageApp: false
|
||||||
|
buildForSimulator: true
|
||||||
|
runNugetRestore: false
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue