Bundle Multiple Xamarin apps in one pkg installer

雨燕双飞 提交于 2019-12-11 23:16:07

问题


I have few Xamarin apps and I want to bundle them all as a single pkg/installer and organize them into a folder under Applications similar to the following snapshot attached. Is there an option to specify additional Xamarin apps in the bundle settings of the project or any build script needs to be written? Can anybody point to some samples ?

Thanks,

Suma.


回答1:


1. pkg installer: Packages

See Payload section to add folder and your .app files.

They also support Certification for signing Developer Installer and Commandline. Just check the documentation.

2. Automation Build script:

Use Packages to create .pkgproj file that config your bundle apps

Go Xamarin Studio -> Project Options -> Custom Command -> Add new Common After Build: add script to copy all bundle apps to a folder that configured by above .pkgproj file

Run command line packagesbuild of Packages to build the .pkgproj file

Finish. Get your .pkg installer file in Build folder.



来源:https://stackoverflow.com/questions/30720490/bundle-multiple-xamarin-apps-in-one-pkg-installer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!