.Net Core Runtime
(.Net Core运行时环境)
.Net Core Runtime
用于使用.Net Core SDK开发的应用程序的运行。
操作系统 | 包管理器 | 安装命令 |
---|---|---|
Windows | Chocolatey | choco install -y dotnetcore-runtime |
macOS | HomeBrew | brew install dotnet |
GNU/Linux | 参考 | |
pacman | sudo pacman -Syyu --noconfirm |
.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
查看详细的帮助文档。
显示一些信息。
列出已经安装的Runtime
。
列出已经安装的SDK
。
运行程序。
示例:
dotnet a.exe
dotnet b.dll