dotnet-core/samples
2017-11-15 15:12:12 -08:00
..
dotnetbot updating samples as coreapp1.0 so they can run anywhere. Fixing csprojs, removing project.jsons (#678) 2017-06-08 10:30:29 -07:00
helloworld updating samples as coreapp1.0 so they can run anywhere. Fixing csprojs, removing project.jsons (#678) 2017-06-08 10:30:29 -07:00
qotd updating samples as coreapp1.0 so they can run anywhere. Fixing csprojs, removing project.jsons (#678) 2017-06-08 10:30:29 -07:00
linker-instructions-advanced.md Add linker root xml documentation 2017-08-28 08:36:06 -07:00
linker-instructions.md Fix linker email (#921) 2017-09-09 08:25:49 -07:00
nuget.config Add linker instructions (#878) 2017-08-24 11:23:25 -07:00
RaspberryPiInstructions.md Make Raspberry Pi publishing information pop out to reduce confusion (#1053) 2017-11-07 22:53:12 -08:00
README.md Use dotnet command to run binary 2016-05-21 02:03:08 +03:00
xmlserializergenerator-instructions.md Update xmlserializergenerator-instructions.md 2017-11-15 15:12:12 -08:00
YoctoInstructions.md Create YoctoInstructions.md (#703) 2017-06-28 09:45:07 -07:00

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