Skip to content

Commit

Permalink
case sensitivity in transforms
Browse files Browse the repository at this point in the history
  • Loading branch information
Philo committed Aug 16, 2016
1 parent a975f6d commit 7759db6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Sitemapify/content/web.config.install.xdt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<system.webServer xdt:Transform="InsertIfMissing">
<handlers xdt:Transform="InsertIfMissing">
<remove name="Sitemapify" xdt:Transform="InsertIfMissing" xdt:Locator="Condition(@name='Sitemapify')"/>
<add name="Sitemapify" verb="GET" path="sitemap.xml" type="Sitemapify.SitemapifyHttpHandler, Sitemapify" xdt:transform="InsertIfMissing" xdt:locator="Condition(@name='Sitemapify')" />
<add name="Sitemapify" verb="GET" path="sitemap.xml" type="Sitemapify.SitemapifyHttpHandler, Sitemapify" xdt:Transform="InsertIfMissing" xdt:Locator="Condition(@name='Sitemapify')" />
</handlers>
</system.webServer>
</configuration>
2 changes: 1 addition & 1 deletion src/Sitemapify/content/web.config.uninstall.xdt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<system.webServer>
<handlers>
<add name="Sitemapify" verb="GET" path="sitemap.xml" type="Sitemapify.SitemapifyHttpHandler, Sitemapify" xdt:transform="Remove" xdt:Locator="Condition(@name='Sitemapify')" />
<add name="Sitemapify" verb="GET" path="sitemap.xml" type="Sitemapify.SitemapifyHttpHandler, Sitemapify" xdt:Transform="Remove" xdt:Locator="Condition(@name='Sitemapify')" />
</handlers>
<handlers xdt:Locator="Condition(count(*) = 0)" xdt:Transform="RemoveAll" />
</system.webServer>
Expand Down

0 comments on commit 7759db6

Please sign in to comment.