I tried to set up IIS on my local machine to run .NET Core API. I followed https://docs.microsoft.com/en-us/aspnet/core/publishing/iis article. I published code (using dotnet publish) to temp folder and on IIS set up to use this temp folder.
I'm getting HTTP Error 502.5 - Process Failure error in browser.
In event logs there is an error:
Application 'MACHINE/WEBROOT/APPHOST/DEFAULT WEB SITE' with physical root 'C:\inetpub\wwwroot\' failed to start process with commandline '"" ', ErrorCode = '0x80070057 : 0.
I upgraded .NET Core from 1.0 to 1.1, created new application pool (.NET CLR Version No Mananged Code), installed all required updates, web.config is created and looks good, but still doesn't work. I found some posts here but they didn't help for me.
Does anyone have same issue?