我想使用 MonoTouch (Xamarin) 的 mdtool 直接从命令行构建我的 ios-apps Appstore-ready。
我使用以下命令:
'/Applications/Xamarin Studio.app/Contents/MacOS/mdtool' -v build '--configuration:AppStore|iPhone' MyAppProject.csproj
现在,在 xCode 中,我设置了几个配置文件,而 mdtool 似乎对使用哪一个感到困惑:
有机会告诉 mdtool 我想用于该构建的所需配置文件吗?
最佳答案
在 Xamarin Studio 中,转到项目选项的“iOS 捆绑签名”部分。您可以在此处为每个构建配置指定 Provisioning Profile 和 Code-sign key 。
现在,您可能已将其设置为“自动”,因此它不知道该选择哪一个,因为您有多个与 Info.plist 中的 CFBundleIdentifier 值匹配的规定
关于iphone - MonoTouch : Build iOS app with mdtool from command line: Multiple provisioning profiles,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15575316/