Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 537 Bytes

README.md

File metadata and controls

14 lines (9 loc) · 537 Bytes

A Simple .NET Core v2.0.0 Hello World in C#

A very simple hello world application, just to get a feel of the basics of the C# language and how the framework runs.

Installation

First download and install the .NET Core SDK for Windows, Linux of macOS. After that install the dependencies and run the compilation script:

$ dotnet restore
$ dotnet run

You could also dotnet build and dotnet exec ... , but dotnet run is a shortcut to do both of these things.