I have Mono Develop installed on my Ubuntu machine. How can I create a C # console project from a terminal. My goal is to write a Makefile.
I want to find the equivalent:
msbuild MyProject.csproj /p:OutputPath=%~dp0
You can use xbuild to create sln or csproj files. xbuild comes with a standard mono installation.
You can directly call dmcs , which is the .NET 4 Mono compiler. See the CSharp Compiler Page for more details.
dmcs