如何使用 xcodebuild 命令行工具在 windows 系统中构建 iOS 项目
how to build iOS project in windows system using xcodebuild command line tool
我想在 windows 系统中使用 xcodebuild 命令行工具构建我的项目
xcodebuild build-for-testing test-without-building-project /xxx/xxxx/xx/xxxx.xcodeproj -scheme xxxx -destination id=UDIDOfDevice
但它给出了错误:
'xcodebuild>' 未被识别为内部或外部命令。
相同的命令在 macOS 中有效
xcodebuild
与 Xcode 打包在一起,这是一个仅限 macOS 的应用程序。因此,xcodebuild
也仅适用于 macOS。您无法使用 xcodebuild
在 Windows 上构建 iOS 应用程序
我想在 windows 系统中使用 xcodebuild 命令行工具构建我的项目
xcodebuild build-for-testing test-without-building-project /xxx/xxxx/xx/xxxx.xcodeproj -scheme xxxx -destination id=UDIDOfDevice
但它给出了错误: 'xcodebuild>' 未被识别为内部或外部命令。
相同的命令在 macOS 中有效
xcodebuild
与 Xcode 打包在一起,这是一个仅限 macOS 的应用程序。因此,xcodebuild
也仅适用于 macOS。您无法使用 xcodebuild