QuickApp icon indicating copy to clipboard operation
QuickApp copied to clipboard

QuickApp ASP.NET Core 3.0 / Angular 8 is no longer running under iis

Open RalfPreuss opened this issue 6 years ago • 1 comments

The latest version 3.0 does not run under IIS. First error: package.json not found. Next: The command "run-p" is either misspelled or could not be found.

IIS V10 NodeJs 10.16.3 DotNetCore 3 Runtime

RalfPreuss avatar Oct 17 '19 09:10 RalfPreuss

Hi, I also had a problem with the IIS. After I changed the web.config file, the program ran without problems: <aspNetCore processPath=".\TipWeb.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" startupTimeLimit="3600" requestTimeout="23:00:00" hostingModel="inprocess"> <environmentVariables> <environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Production" /> </environmentVariables> </aspNetCore>

IngoManthey avatar Dec 07 '19 15:12 IngoManthey