If you have an ipa file (e.g. generated through Jenkins), can you create an archive out of it? Is there a possibility to do that in Xamarin Studio/Xcode after the ipa file has been created?
Or is the only way generating a new ipa/xcarchive file in Xamarin Studio/Xcode? Perhaps the xcarchive can be build on the command line with the ipa file path as input parameter?
There is command, which can create a xcarchive file
xcodebuild -scheme myscheme archive -archivePath /path/to/AppName.xcarchive
but what is the project source for this?