三、搭建.Net Core Web Api应用并运行
-
在VSCode按下shift+command+p搜索
-
输入.NET: New Project创建.Net项目
-
选择ASP.NET Core Web Api项目
-
选择你想要放置项目的位置并确认Create project即可
-
项目结构如下所示
-
试运行
-
点击左侧Debug菜单选择Show al automatic debug configurations→C#.
-
选择http
-
新增一个Controller
using Microsoft.AspNetCore.Mvc; namespace TeachingWebApi.Controllers; [ApiController] [Route("api/")] public class HealthCheckController : ControllerBase { [HttpGet(Name = "healthcheck")] public String Get() { return "the@health@is@good"; } }
-
成功!
-