mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
24 lines
738 B
XML
24 lines
738 B
XML
<?xml version="1.0"?>
|
|
<configuration>
|
|
<!-- Standard ASP.NET configuration; see https://go.microsoft.com/fwlink/?LinkId=169433 -->
|
|
<system.web>
|
|
<compilation debug="false" targetFramework="4.0"/>
|
|
</system.web>
|
|
|
|
<!-- Register MIME type for cache manifest -->
|
|
<system.webServer>
|
|
<staticContent>
|
|
<remove fileExtension=".appcache"/>
|
|
<mimeMap fileExtension=".appcache" mimeType="text/cache-manifest"/>
|
|
</staticContent>
|
|
</system.webServer>
|
|
|
|
<!-- Disable caching for cache manifest file -->
|
|
<location path="offline.appcache">
|
|
<system.webServer>
|
|
<staticContent>
|
|
<clientCache cacheControlMode="DisableCache"/>
|
|
</staticContent>
|
|
</system.webServer>
|
|
</location>
|
|
</configuration>
|