Microsoft .NET

| Comments

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 #

Presentations #

Templates #

Tools #

  • Forge: for creating projects
  • Paket: for Nuget dependencies management
  • FAKE: build management

Libraries #

Samples #

  • zerosharp: “demo of the potential of C# for systems programming with the .NET native ahead-of-time compilation technology”