0
votes

I'm trying to host an asp.net core web application, but for some reason it wont work. My other core app's work, but not this one. I've set the application pool .net clr version to no managed code.

this is what I get in event viewer: "Application 'MACHINE/WEBROOT/APPHOST/FFU CORE' with physical root 'C:\Users\Administrator\Documents\WWWROOT\Customer\core_FFU\' failed to start process with commandline '"dotnet" .\WEB_CORE_MODERN_2017.dll', ErrorCode = '0x80004005 : 80008083."

any help will be higly appreciated!

1
Quick google search of your error code reveals it's could be a bad runtime: github.com/aspnet/Tooling/issues/886J. Thompson
Mark as answer, if the answer has the solutionMJK

1 Answers

0
votes
  1. Can you host via IIS Express in Visual Studio?
  2. Are you updated to the latest SDK and runtime? https://github.com/dotnet/core/blob/master/release-notes/download-archive.md
  3. Make sure you have the latest .net core windows hosting installed.

Similar question: here