dotnet .NET Snippets
Install appropriate SDK or runtime for the application
# Build applicationdotnet build
# Initialize a new .NET projectdotnet new template_short_name
# Restore NuGet packagesdotnet restore
# Build and execute the .NET project in the current directorydotnet run
# Run a packaged dotnet application (only needs the runtime, the rest of the commands require the .NET Core SDK installed):dotnet path/to/application.dll