根据您的要求,您需要在Xcode中使用target
并界定了xcconfig文档。
Refer to this doc:
xcWorkspacePath - Workspace or project path
string. Default value: **/*.xcodeproj/project.xcworkspace.
选择。 具体指明了从存放处根到Xcode工作空间或项目的相对途径。 如果你指明价值,你也必须具体说明这一办法。 如果你具体指明,则不说明价值,即预先标示的旗帜。 例如,MyApp/MyApp.xcworkspace或MyApp/MyApp.xcodeproj。
如果您需要在Xcode任务中使用-target
,则无需界定xcWorkspacePath。
为达到您的要求,可在<代码>args领域添加<>-xcconfig。
For example:
- task: Xcode@5
inputs:
actions: build
sdk: iphoneos
configuration: Release
xcodeVersion: 12
args: -target <your_target_name> -xcconfig filepath/<your_configuration_file>.xcconfig
workingDirectory: Define the Working Directory
If the xcconfig file is not in the repo, you can save it in the secure file in Azure Pipelines -> Library -> Secure file
You can add the task DownloadSecureFile@1
to download it and then use it in the Xcode task.