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#
- Host: GitHub
- URL: https://github.com/janit/dotnetcore-hello-world
- Owner: janit
- Created: 2017-10-04T19:53:31.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-04T20:48:19.000Z (over 8 years ago)
- Last Synced: 2025-04-26T04:25:32.151Z (about 1 year ago)
- Language: C#
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.