Added web.Release.config to include remove WebDAV during the publish stage of a release

This commit is contained in:
Rodien Blindeling 2022-01-21 02:32:48 +01:00
parent 1fbab5db2b
commit 93b6de1caf

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- To customize the asp.net core module uncomment and edit the following section.
For more info see https://go.microsoft.com/fwlink/?linkid=838655 -->
<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>