dotnet-core/samples
2016-05-10 15:19:17 -07:00
..
dotnetbot Updating for RC2 2016-05-10 15:19:17 -07:00
helloworld Updating for RC2 2016-05-10 15:19:17 -07:00
qotd Updating for RC2 2016-05-10 15:19:17 -07:00
README.md Change dotnet compile to dotnet build 2016-04-03 10:49:17 -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
    • ./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).