有没有办法在命令行中从目标获取产品名称?
我尝试了xcodebuild -list -project Foo.xcodeproj
,但它只列出了目标。
是否有类似xcodetargetinfo -target=foobar
的内容返回与目标相关的所有信息,包括产品名称?
答案 0 :(得分:2)
是的,有:-showBuildSettings
切换。用法:
xcodebuild -target <target> -configuration <configuration> -showBuildSettings | grep -i 'PRODUCT_NAME'
您需要手动解析输出。