Csharp compilers

From wikinotes

The dotnet framework includes a C# compiler, and build system.

Documentation

docs https://docs.microsoft.com/en-us/dotnet/core/
runtime-ids https://docs.microsoft.com/en-us/dotnet/core/rid-catalog

Usage

dotnet new console -o helloworld
cd helloworld

dotnet run                                    # run program
dotnet publish -r linux-x64 --self-contained  # build native executable for runtime-id (cross compile)
dotnet publish                                # build platform-agnostic IL package