boutique replica bags up ideas

the best replique rolex and prices here.

julia highlight 99j hair color 10a quality straight human hair lace front wigs 8 - 24 inches pre plucked hairline 13x4 inches lace front brazilian wig onlinefor sale

Getting an error when running dotnet publish [Solved]

Updated on     Kisan Patel

Problem:

Getting an error when running dotnet publish command.
“npm run build — –prod” error on Visual Studio 2017 .NET Core Angular Project.

Solution

Edit your .csproj file: Right click on you project – select Edit ____.csproj

Replace this:

<Exec WorkingDirectory="$(SpaRoot)" Command="npm run build -- --prod" />
<Exec WorkingDirectory="$(SpaRoot)" Command="npm run build:ssr -- --prod" Condition=" '$(BuildServerSideRenderer)' == 'true' " />

With this:

<Exec WorkingDirectory="$(SpaRoot)" Command="npm run build --prod" />
<Exec WorkingDirectory="$(SpaRoot)" Command="npm run build:ssr --prod" Condition=" '$(BuildServerSideRenderer)' == 'true' " />

.NET Core Angular

Leave a Reply