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 # 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