# DotNET6 部署 IIS 必要操作
# VS2022 发布项目到文件夹,然后拷贝到服务器
# 安装 DotNET6 运行时环境
点击下载:dotnet-hosting-6.0.6-win.exe
# 配置 Program 中的 Swagger
# 将开发模式开启改为默认开启
// 开发模式开启 Swagger | |
//if (app.Environment.IsDevelopment()) | |
//{ | |
// app.UseSwagger(); | |
// app.UseSwaggerUI(); | |
//} | |
app.UseSwagger(); | |
app.UseSwaggerUI(); |