Hi everyone.
How do I install aspnetcore support on Windows Server 2016 CORE? I have the following web.config from an application:
--
<configuration><system.web><authenticationmode="Windows"/><customErrorsmode="Off"/></system.web><system.webServer><handlers><addname="aspNetCore"path="*"verb="*"modules="AspNetCoreModuleV2"resourceType="Unspecified"/></handlers><aspNetCoreprocessPath="dotnet"arguments=".\SGPWeb.dll"stdoutLogEnabled="true"stdoutLogFile=".\logs\stdout"/><httpErrorserrorMode="Detailed"/></system.webServer></configuration>
That returns error 500.
Thanks.