I have created simple Console.WriteLine function, on building it says build failed. But doesnt show any error / warning
I have created simple Console.WriteLine function, on building it says build failed. But doesnt show any error / warning
Check your build output. Sometimes you will have information about the error in the output.
example: 
Program class should be declared as public
public class Program
{
public static void Main()
{
Console.WriteLine(1);
}
}