I start to learn .Net Core. I want to write a simple \'Hello World\' console application.
Unfortunately the System.Console is not available initially. T
System.Console
Just add NuGet Package
to your project. No need to muss around with project.json. That way, you also get the latest (stable) version.
One gotcha: if you name your console project Something.Console, be sure to fully qualify the path to Write, i.e.
System.Console.Write();