This is me working through the https://www.microsoft.com/net/tutorials/csharp/getting-started tutorials.
Not stated in the tutorial, run the following from the command prompt in the project directory:
- To build use:
dotnet build
- To run use:
dotnet run
- To run what was built, use:
dotnet .\bin\Debug\netcoreapp1.0\GettingStarted.dll
Completed:
- Creating a Hello World Program
- Learning About Built-In Types and Variables
- Working with Strings
Started:
- Working with Dates and Times