What are the complete set of steps to fully build a Monotouch app bundle from the command line?

后端 未结 1 624
悲&欢浪女
悲&欢浪女 2021-01-20 17:56

I\'d like to know what the complete set of steps is to build a MonoTouch C# app consisting of the main application assembly containing xib files and a set of library assembl

相关标签:
1条回答
  • 2021-01-20 18:54

    You can run, from a terminal window or from within an MSBuild task, the /Applications/MonoDevelop.app/Contents/MacOS/mdtool tool that is supplied with MonoDevelop. E.g.

    /Applications/MonoDevelop.app/Contents/MacOS/mdtool -v build -t:Build "-c:Debug|iPhoneSimulator" /path/to/your/app.csproj
    

    That will build the MonoTouch application, including all your steps above and any future feature that will be added.

    0 讨论(0)
提交回复
热议问题