MonoDevelop Error "Unknown MSBuild Error" on Linux

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.

+2
source share
2 answers

This is most likely due to errors or errors during compilation, which, oddly enough, MonoDevelop does not tell you.

Assuming you installed mono yourself, open a terminal and compile it ( source ):

mcs HelloWorld.cs
+1
source

, - , NUnit, - , ,

0

Source: https://habr.com/ru/post/1678218/


All Articles