Reputation: 60213
For my Mono project, I want to generate a Mac package with Monodevelop/MonoMac, as described here:
http://www.mono-project.com/MonoMacPackager#Bundle_Configuration
The screenshot on the page above shows Projects > Create Mac installer
PROBLEM: I don't have this item menu.
I comply with all requirements of the page above:
Application Tools
seems to be included in XCode since 3.2.6 so I don't need to install another package.Am I missing something?
Upvotes: 1
Views: 483
Reputation: 1602
The documentation on the site is out of date. In recent versions of MonoDevelop, these options are in your project settings under the item "Mac OS X Packaging". The app will now be packaged along with the build process, instead of having to do the extra step each time.
The default MonoMac project templates have an "App Store" build configuration that (by default) bundles the mono framework, signs the .app, and builds a .pkg that can be distributed to the app store.
Upvotes: 2