Skip to content

Latest commit

 

History

History
73 lines (52 loc) · 1.88 KB

README.md

File metadata and controls

73 lines (52 loc) · 1.88 KB

Using .NET Core

Guide

Articles

Examples

  • Inheritance Inversion
    public class WeekDaysChron : AbstractSingletonList<Day, WeekDaysChron> { /* ... */ }
    
    WeekDaysChron.All.ForEach(day => Console.WriteLine(day));
  1. Install pre-requisites
    brew update
    brew install openssl
    mkdir -p /usr/local/lib
    ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/
    ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/
  2. Install .NET Core SDK Download .NET Core SDK
  3. Initialize some code
    mkdir using-dotnet-core
    cd using-dotnet-core
    dotnet new
  4. Run the app
    dotnet restore
    dotnet run

Extensions

  • C#
    code --install-extension ms-vscode.csharp

Files in .vscode

Tools

markdownlint