Issues fixed.

This commit is contained in:
o.hauff 2022-12-17 15:29:12 +00:00
parent 6c498d02c6
commit 3e0bb64c31

View file

@ -1,17 +1,19 @@
# Xamarin.iOS
# Build a Xamarin.iOS project.
# Add steps that install certificates, test, sign, and distribute an app, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/xamarin
# Builds iOS version for all flavors of app:
# - sharee.bike
# - Lastenrad Bayern
# - Mein konrad
trigger:
- master
- main
pool:
vmImage: 'macos-latest'
vmImage: 'macos-12'
variables:
buildConfiguration: 'Release'
solutionName : 'TINK.sln'
solutionNameIosLastenradBayern : 'LastenradBayern.sln'
solutionNameIosShareeBike : 'ShareeBike.sln'
solutionNameIosMeinKonrad : 'MeinKonrad.sln'
steps:
# To manually select a Xamarin SDK version on the Microsoft-hosted macOS agent,
@ -29,11 +31,34 @@ steps:
- task: NuGetCommand@2
inputs:
restoreSolution: '$(solutionName)'
restoreSolution: '**/$(solutionNameIosLastenradBayern)'
- task: XamariniOS@2
inputs:
solutionFile: '$(solutionName)'
solutionFile: '**/$(solutionNameIosLastenradBayern)'
configuration: '$(buildConfiguration)'
packageApp: false
buildForSimulator: true
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