Angular CLI version 10
npm install -g @angular/cli@10Restore nuget packages for dotnet sever
dotnet restoreRestore npm packages for client app
cd src/Web/ClientApp/
npm installDebug build
cd src/Web/
dotnet buildRelease build
cd src/Web/
dotnet build --configuration ReleaseDebug build
cd src/Web/ClientApp/
npm install
npm run buildProduction build
cd src/Web/ClientApp/
npm install
npm run build:prodFirst run the Angular dev server
cd src/Web/ClientApp/
npm startThen in a new terminal window run the dotnet server
cd src/Web/
dotnet runPublish the server code with the client app for deployment
cd src/Web/
dotnet publish --configuration Release