26 lines
363 B
Markdown
26 lines
363 B
Markdown
# [Ubuntu 22.04安装.net 8](https://learn.microsoft.com/zh-cn/dotnet/core/install/linux-ubuntu-2204)
|
|
|
|
```sh
|
|
# 更新包
|
|
sudo apt-get update
|
|
# 安装.net 8
|
|
sudo apt-get install -y dotnet-sdk-8.0
|
|
|
|
```
|
|
|
|
# 运行
|
|
```sh
|
|
#恢复依赖
|
|
dotnet restore
|
|
|
|
|
|
#编译项目
|
|
dotnet build
|
|
|
|
# 查看版本列表
|
|
dotnet --list-sdks
|
|
|
|
# 发布项目
|
|
dotnet publish -c Release
|
|
```
|