5

現在https://channel9.msdn.com/Events/Visual-Studio/Visual-Studio-2017-Launch/WEB-103、Mac (macOS Sierra、Visual Studio Community 2017) で Visual Studio を使用して Spa アプリをセットアップしています。

angularコアのインストールに成功し、現在、インストールされたテンプレートの1つに基づいて新しいプロジェクトを作成しようとしています.

実行すると、次の 2 つの角度テンプレートが表示されますsudo dotnet new -l

MVC ASP.NET Core with Angular angular [C#] Web/MVC/SPA ASP.NET Core with Angular angular [C#] Web/MVC/SPA

を実行するsudo dotnet new angularと、次のエラーが発生し続けます。

Unable to determine the desired template from the input template name: angular.
The following templates partially match the input. Be more specific with the template name and/or language.

Templates                          Short Name      Language      Tags       
----------------------------------------------------------------------------
MVC ASP.NET Core with Angular      angular         [C#]          Web/MVC/SPA
ASP.NET Core with Angular          angular         [C#]          Web/MVC/SPA


Examples:
    dotnet new angular
    dotnet new angular
    dotnet new --help

コマンドに欠けているものはありますか?Visual Studio / dotnet が正しく構成されていませんか?

4

2 に答える 2

2

.netcore 2.1 を使用

dotnet new angular -o my-new-app
cd my-new-app

2.1 では、package.json はクライアント アプリ内にあります。

    cd ClientApp
    npm install
    dotnet restore
    dotnet run
于 2018-06-07T08:00:38.840 に答える