Answers for "HTTP Error 500.35 - ASP.NET Core does not support multiple apps in the same app pool"

C#
0

HTTP Error 500.35 - ASP.NET Core does not support multiple apps in the same app pool

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <location path="." inheritInChildApplications="false">
    <system.webServer>
      <handlers>
        <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
      </handlers>
      <aspNetCore processPath="dotnet" arguments=".\DotNetCoreApp.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="OutOfProcess" />
    </system.webServer>
  </location>
</configuration>
Posted by: Guest on May-05-2022

Code answers related to "HTTP Error 500.35 - ASP.NET Core does not support multiple apps in the same app pool"

C# Answers by Framework

Browse Popular Code Answers by Language