我在Azure DevOps support macOS builds with Xcode13中找不到镜像。
有没有人知道如何在Azure DevOps中找到或添加这样的图像?
发布于 2021-09-28 03:11:00
对于Xode 13和IOS 15,您可以尝试使用微软托管的代理:macOS 11。

在9/17更新中,macos11中添加了Xcode13。
请参阅发行说明:macOS 11 (20210917 update)和Macos 11 agent configuration
发布于 2021-10-07 15:20:30
根据this article的说法,你需要找到最新的Mono和XCode版本(列出的here),并使用以下命令手动设置它们
/bin/bash -c "sudo $AGENT_HOMEDIRECTORY/scripts/select-xamarin-sdk.sh 6_12_10"
/bin/bash -c "echo '##vso[task.setvariable variable=MD_APPLE_SDK_ROOT;]'/Applications/Xcode_13.0.app;sudo xcode-select --switch /Applications/Xcode_13.0.app/Contents/Developer"然后使用
mono
'/Applications/Visual Studio.app/Contents/Resources/lib/monodevelop/bin/MSBuild/Current/bin/msbuild.dll'
/p:Configuration=$(BuildConfiguration)
/p:Platform=iPhone
'<path to project>'https://stackoverflow.com/questions/69352935
复制相似问题