找不到与输入匹配的已安装模板 [从 CLI 创建 .net 核心 Web API 项目] --

Couldn't find an installed template that matches the input [creating .netcore webAPI project from CLI] --

这里只是一个快速查询。 尝试从命令行创建新的 .NETCORE webAPI 项目。

使用:dotnet new webapi RequisitionAPI -n

不起作用。我收到错误

    Couldn't find an installed template that matches the input, searching online for one that does...

    Invalid input switch:
    RequisitionAPI
    ASP.NET Core Web API (C#)
    Author: Microsoft
    Description: A project template for creating an ASP.NET Core application with an example   Controller for a RESTful HTTP service. This template can also be used for ASP.NET Core MVC Views and Controllers.

这里有什么问题。这就是文档中描述的方式。不明白为什么说找不到已安装的模板。 .NET Sdk 已安装好。版本 3.1.405.

请快速通过管道告诉我。有什么问题??

您需要在 RequisitionAPI 之前定义选项 -n:

dotnet new webapi -n RequisitionAPI