web.config.transform 418 B

1234567891011121314
  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. <handlers>
  10. <add name="Nancy" verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="*"/>
  11. </handlers>
  12. </system.webServer>
  13. </configuration>