.Net Core Runtime
1.1、.Net Core Runtime简介

.Net Core Runtime.Net Core运行时环境)

.Net Core Runtime用于使用.Net Core SDK开发的应用程序的运行。

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

Arch Linux

ArcoLinux

Manjaro Linux

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

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

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

查看详细的帮助文档。

1.4.2、dotnet --info

显示一些信息。

1.4.3、dotnet --list-runtimes

列出已经安装的Runtime

1.4.4、dotnet --list-sdks

列出已经安装的SDK

1.4.5、dotnet <app>

运行程序。

示例:

dotnet a.exe
dotnet b.dll