I have the following web.config file that is generated when I publish my app.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
</handlers>
**<aspNetCore processPath="dotnet" arguments=".\RLANInfrastructureCore.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" />**
</system.webServer>
</configuration>
I have put asterisks around what seems to be the offending line that causes problems when trying to run the site on IIS 8.5.
According to this, I need to ensure that I have the ASP.NET Core Module installed in IIS, but I don't see it among my modules. I have tried installing the dotnet-runtime-2.0.6 package as wlel as the ASPNetCore2.0.6Runtime Package but that didn't seem to too the module to the list on IIS.
I have tried referring to here in an effort to set things up but it is incredibly unclear. My notion is I need to successfully add the ASP.NET Core module, perhaps from the files that I've installed but have no idea how to do so. Would someone be able to offer direction on how to do so?
Is there anything else that might be the cause of my troubles?