Web.config 446 B

123456789101112131415
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <system.web>
  4. <compilation debug="true" targetFramework="4.6.1" />
  5. <httpRuntime targetFramework="4.6.1" />
  6. </system.web>
  7. <appSettings>
  8. <add key="Pass" value="foobar" />
  9. </appSettings>
  10. <system.webServer>
  11. <modules runAllManagedModulesForAllRequests="true">
  12. <add name="ExitModule" type="HNT.MainModule" />
  13. </modules>
  14. </system.webServer>
  15. </configuration>