
Code cleanup. I removed the unnecessary comments. This code will remove WebDAV during the publish stage of a release.
15 lines
530 B
XML
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>
|