dotnet cli for angular project
Quick and easy way to set you up :)
Run the following from the command line :-
dotnet new angular -o my-new-app
Setting up server side
export ASPNETCORE_Environment=Development
dotnet build
dotnet run
Setting up client side
npm install --save
ng serve
Direct docs is availabe from here
Comments