2020年如何在Visual Studio Code中创建新项目?

时间:2020-07-13 01:52:21

标签: asp.net-web-api vscode-tasks

我想使用VS Code创建一个ASP.NET Web API项目,但是在我的编辑器中,我没有新的项目选项:

Screenshot of VS Code welcome page on my laptop

如您所见,我只有新文件选项。

请问有人可以帮我吗?

谢谢

1 个答案:

答案 0 :(得分:0)

创建一个名为“ HelloWorldApi”的.NET Core WebApi项目。

  1. 启动Visual Studio代码。

  2. 从主菜单中选择“文件”>“打开文件夹”(在macOS上为“文件”>“打开...”)。

  3. 在“打开文件夹”对话框中,创建一个HelloWorldApi文件夹,然后单击“选择文件夹”(在macOS上打开)。文件夹名称默认为项目名称和名称空间名称。

  4. 通过从主菜单中选择“视图”>“终端”,在Visual Studio Code中打开终端。

  5. 终端会在HelloWorldApi文件夹中打开并显示命令提示符。

  6. 在终端中,输入以下命令:dotnet new webapi

C:\HelloWorldApi> dotnet new webapi
The template "ASP.NET Core Web API" was created successfully.

Processing post-creation actions...
Running 'dotnet restore' on C:\HelloWorldApi.csproj...
  Determining projects to restore...
  Restored C:\HelloWorldApi.csproj (in 191 ms).

Restore succeeded.

该模板创建一个简单的基础WebApi项目。

要运行API,请在控制台中输入:dotnet run

C:\HelloWorldApi> dotnet run
info: Microsoft.Hosting.Lifetime[0]
      Now listening on: https://localhost:5001
info: Microsoft.Hosting.Lifetime[0]
      Now listening on: http://localhost:5000
info: Microsoft.Hosting.Lifetime[0]
      Application started. Press Ctrl+C to shut down.
info: Microsoft.Hosting.Lifetime[0]
      Hosting environment: Development
info: Microsoft.Hosting.Lifetime[0]
      Content root path: C:\HelloWorldApi