MS AppCenter 构建未找到 project.xcworkspace 的方案
MS AppCenter build No scheme found for project.xcworkspace
我正在尝试在 MS AppCenter 中创建 React Native iOS 构建。并收到以下错误
No scheme found for project.xcworkspace
可能是与我的 git 存储库结构有关的问题。我的 git 根目录和项目根目录不同。看起来像这样 git_root > react_native_project_root > ios > project.xcworkspace
有什么办法可以解决这种情况吗?
我将 git 结构从 git_root > react_native_project_root > ios > project.xcworkspace
更改为 git_root > ios > project.xcworkspace
后,我的假设是正确的,问题已解决。
我遇到了同样的问题,在 中有描述。
来自官方 AppCenter 文档:
For best performance, the analysis is currently limited to four directory levels including the root of your repository.
所以,您的 xcode 项目恰好在层次结构中太深了。
我使用了与您相同的解决方法 - 我更改了文件夹结构。
我正在尝试在 MS AppCenter 中创建 React Native iOS 构建。并收到以下错误
No scheme found for project.xcworkspace
可能是与我的 git 存储库结构有关的问题。我的 git 根目录和项目根目录不同。看起来像这样 git_root > react_native_project_root > ios > project.xcworkspace
有什么办法可以解决这种情况吗?
我将 git 结构从 git_root > react_native_project_root > ios > project.xcworkspace
更改为 git_root > ios > project.xcworkspace
后,我的假设是正确的,问题已解决。
我遇到了同样的问题,在
For best performance, the analysis is currently limited to four directory levels including the root of your repository.
所以,您的 xcode 项目恰好在层次结构中太深了。 我使用了与您相同的解决方法 - 我更改了文件夹结构。