You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

web.config.transform 468 B

4 years ago
123456789101112131415
  1. <configuration>
  2. <system.web>
  3. <httpHandlers>
  4. <add verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="*"/>
  5. </httpHandlers>
  6. </system.web>
  7. <system.webServer>
  8. <validation validateIntegratedModeConfiguration="false"/>
  9. <httpErrors existingResponse="PassThrough"/>
  10. <handlers>
  11. <add name="Nancy" verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="*"/>
  12. </handlers>
  13. </system.webServer>
  14. </configuration>