tags:

views:

44

answers:

3

I need to use C# on Mac, and I have Mono. What command line tools are for building purposes Mono/C#?

  • Can I just use make?
  • Or is there any tool for that just like Ant for Java?
+1  A: 

There is NAnt. Development of NAnt starts to get faster again, so we'll see a new release soon ;)

-sa

Sascha
+1  A: 

On *nix platforms, you can simply use make to build and deploy your .NET libraries/applications.

It works quite well and is what Mono itself does when you build from source. Mono will first build mcs and then use the newly built mcs to build the framework assemblies.

Justin Niessner
+2  A: 

It looks like the Mono project has its own version of MSBuild, xBuild.

Daniel Pratt