Daniel Elliott
Daniel Elliott

Reputation: 22867

Buildserver for MonoTouch upon OS X?

I am taking my first steps in the world of iPhone/iPad development with MonoTouch and wish to adopt the practices that I adhere to in my "day" job.

Is there a buildserver for OS X that plays nice with MonoTouch/Nunit?

Thanks kindly,

Dan

Upvotes: 2

Views: 1237

Answers (2)

Mikayla Hutchinson
Mikayla Hutchinson

Reputation: 16153

Assuming you have MonoDevelop and MonoTouch installed, you can build solutions using the MonoDevelop commandline tool:

/Applications/MonoDevelop.app/Contents/MacOS/mdtool build

For options, run

/Applications/MonoDevelop.app/Contents/MacOS/mdtool build --help

Upvotes: 2

user156888
user156888

Reputation:

I don't know how you'd get the actual iPhone project to build but of you farm out as much as you can to seperate projects so only the bits that need the funky MT references are in the central UI project you can at least build the rest as normal.

I've just started using TinyIoc which will help in this regard.

As for a specific build server - isnt TeamCity built using Java and Appache? If so there should be no reason why this won't work on your OSX.

That said - why would you want the build server on the same physical machine you dev on?

Upvotes: 1

Related Questions