dotnet-core/samples
Sławomir Bryś 8c17d2b7fc Added 'async Main' helloworld example. (#1394)
* Added 'async Main' helloworld example.

* Removed conditions in property groups.

* Mark project as C# 7.1 explicit.

* Tabify .cs file.

* Corrected tabs.
2018-04-02 22:28:05 -07:00
..
dotnetbot
dotnetsay Fix a couple of typos in dotnetsay README 2018-02-28 08:11:17 -08:00
helloworld Added 'async Main' helloworld example. (#1394) 2018-04-02 22:28:05 -07:00
helloworldasync Added 'async Main' helloworld example. (#1394) 2018-04-02 22:28:05 -07:00
qotd
linker-instructions-advanced.md Fix root descriptor examples 2018-03-01 15:47:35 -08:00
linker-instructions.md
nuget.config
RaspberryPiInstructions.md Update RaspberryPiInstructions.md 2018-03-21 10:57:07 -07:00
README.md
xmlserializergenerator-instructions.md Updating the Package Version to 1.0.0 2017-12-07 17:16:43 -08:00
YoctoInstructions.md

.NET Core Samples

This directory contains samples that you can use to test out .NET Core. They are small and simple, and are used to get your feet wet with .NET Core as fast as possible.

How to run the samples?

In order to run these samples, you first need to install .NET Core. After that, you can clone this repo, go into each of the samples folders and either:

  • Run from source using the following commands:
    • dotnet restore
    • dotnet run
  • Compile and run using the following commands
    • dotnet restore
    • dotnet build
    • dotnet bin/Debug/[framework]/[binary name]

Samples list

  • dotnetbot - Let dotnetbot say Hi!
  • helloworld - because no sample is complete without Hello World!
  • qotd - a simple "quote of the day" console application (note: this sample is not yet capable of being compiled to a native binary).