I just installed MonoDevelop on my Ubuntu computer and decided to run the hi world just to check it out:
using System;
public class HelloWorld
{
static public void Main ()
{
Console.WriteLine ("Hello Mono World");
}
}
... but when you create it, the error "Unknown MSBuild error" appears
I tested Mono before using MonoDevelop and verified that it works.
source
share