An open API service indexing awesome lists of open source software.

https://github.com/janit/dotnetcore-hello-world

A Simple .NET Core v2.0.0 Hello World in C#
https://github.com/janit/dotnetcore-hello-world

Last synced: about 1 year ago
JSON representation

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

Awesome Lists containing this project

README

          

# 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.