TEXT 9
Iis Guest on 30th November 2024 11:40:35 AM
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3.   <!-- Configure settings specific to this application -->
  4.   <location path="." inheritInChildApplications="false">
  5.     <system.webServer>
  6.       <!-- Define the handler for ASP.NET Core -->
  7.       <handlers>
  8.         <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
  9.       </handlers>
  10.      
  11.       <!-- ASP.NET Core Module configuration -->
  12.       <aspNetCore
  13.         processPath="dotnet"
  14.         arguments=".\YourApplication.dll"
  15.         stdoutLogEnabled="false"
  16.         stdoutLogFile=".\logs\stdout"
  17.         hostingModel="inprocess" />
  18.     </system.webServer>
  19.   </location>
  20. </configuration>

Hightechrobo bin is for source code and general debugging text.

Login or Register to edit, delete and keep track of your pastes and more.

Raw Paste

Login or Register to edit or fork this paste. It's free.