使用 `dotnet new webapi` 命令创建项目时,Web Api 项目中没有 **App_Start** 文件夹

I do not have the **App_Start** folder in a Web Api project when the project is created using the `dotnet new webapi` command

当使用 dotnet new webapi 命令创建项目时,我在 Web Api 项目中没有 App_Start 文件夹。为什么?

我正在使用 VS Code 并按照 here 上的教程进行操作。在教程中使用了 Visual Studio,我认为我也可以在 VS Code 中完成 Visual Studio 中可以完成的所有事情。好像不是这样。

我看到下面的项目结构,和Visual Studio中创建的肯定不一样:

dotnet CLI 适用于 .NET Core。

您正在学习的教程适用于 .NET Framework。

这里没有问题,.NET框架项目可以使用VS Code。

但是,dotnet CLI 具有 .NET Core 模板。强烈建议在 .NET Core 中开始新的开发。

基本上,找到最新的教程。