Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"AngularCli" does not exist in the "Microsoft.AspNetCore.SpaServices" namespace

I want to use Microsoft.AspNetCore.SpaServices.AngularCli but get error like this ("AngularCli" does not exist in the "Microsoft.AspNetCore.SpaServices" namespace). I added packege with command dotnet add package Microsoft.AspNetCore.SpaServices --version 2.0.1,but I still have problem with SpaServices

like image 283
Ilyoskhuja Avatar asked Jan 30 '19 09:01

Ilyoskhuja


1 Answers

For Microsoft.AspNetCore.SpaServices.AngularCli, it exists under Microsoft.AspNetCore.SpaServices.Extensions package instead of Microsoft.AspNetCore.SpaServices.

Try to install Microsoft.AspNetCore.SpaServices.Extensions.

like image 95
Edward Avatar answered Sep 17 '22 13:09

Edward