.Net Core SDK
1.1、.Net Core SDK简介

.Net Core SDK.Net Core Software Development Kit软件开发工具)

.Net Core SDK里包含有.Net Core Runtime

1.2、通过包管理器安装.Net Core SDK
操作系统包管理器安装命令
WindowsChocolateychoco install -y dotnetcore-sdk
macOSHomeBrewbrew install dotnet-sdk
GNU/Linux参考

Arch Linux

ArcoLinux

Manjaro Linux

pacmansudo pacman -Syyu --noconfirm
sudo pacman -S    --noconfirm dotnet-sdk
1.3、.Net Core SDK Docker镜像

.Net Core SDK官方Docker镜像网址:https://hub.docker.com/_/microsoft-dotnet-core-sdk

docker run --tty --interactive --name dotnet-core-sdk mcr.microsoft.com/dotnet/core/sdk:3.0 /bin/bash
1.4、dotnet命令

dotnet命令是.Net Core Runtime提供的,.Net Core SDK对它进行了扩展,增加了很多的子命令。

1.4.1、dotnet --help

查看详细的帮助文档。