- <?xml version="1.0" encoding="utf-8"?>
- <configuration>
- <!-- Configure settings specific to this application -->
- <location path="." inheritInChildApplications="false">
- <system.webServer>
- <!-- Define the handler for ASP.NET Core -->
- <handlers>
- <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
- </handlers>
- <!-- ASP.NET Core Module configuration -->
- <aspNetCore
- processPath="dotnet"
- arguments=".\YourApplication.dll"
- stdoutLogEnabled="false"
- stdoutLogFile=".\logs\stdout"
- hostingModel="inprocess" />
- </system.webServer>
- </location>
- </configuration>
Recent Pastes