363 B
363 B
Ubuntu 22.04安装.net 8
# 更新包
sudo apt-get update
# 安装.net 8
sudo apt-get install -y dotnet-sdk-8.0
运行
#恢复依赖
dotnet restore
#编译项目
dotnet build
# 查看版本列表
dotnet --list-sdks
# 发布项目
dotnet publish -c Release