Contents:
C# (CSharp) #
Game Development #
F# (FSharp) #
Start New Project #
# Starting a new solution
dotnet new sln -o AdventOfCode
# Start a console applicatin
cd AdventOfCode/
dotnet new console -lang "F#" -o App
# Add project to the solution
dotnet sln add App/App.fsproj
# Restore NuGet dependencies
dotnet restore
# Build the project
dotnet build
# Run the project
cd ./App
dotnet run
Articles #
- Get started with F# with the .NET Core CLI
- F# Style Guide
- .NET Core application deployment
- paket generate-load-scripts
- An attempt at encoding GADTs
Presentations #
Templates #
- ProjectScaffold: template for new projects
- MiniScaffold
Tools #
Libraries #
- Expecto: unit testing
Samples #
- zerosharp: “demo of the potential of C# for systems programming with the .NET native ahead-of-time compilation technology”