This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
Rodien_Bond004 22acb7c74b
Comments cleanup
Code cleanup. I removed the unnecessary comments.

This code will remove WebDAV during the publish stage of a release.
2022-01-21 11:58:24 +01:00

15 lines
530 B
XML

<?xml version="1.0" encoding="utf-8"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<location>
<system.webServer>
<modules xdt:Transform="InsertIfMissing">
<remove name="WebDAVModule" xdt:Transform="InsertIfMissing"/>
</modules>
<handlers xdt:Transform="InsertIfMissing">
<remove name="WebDAV" xdt:Transform="InsertIfMissing" />
</handlers>
</system.webServer>
</location>
</configuration>