2016-04-20 17:15:14 -04:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!--
|
|
|
|
For more information on how to configure your ASP.NET application, please visit
|
|
|
|
http://go.microsoft.com/fwlink/?LinkId=169433
|
|
|
|
-->
|
|
|
|
<configuration>
|
|
|
|
<!--
|
|
|
|
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
|
|
|
|
|
|
|
|
The following attributes can be set on the <httpRuntime> tag.
|
|
|
|
<system.Web>
|
|
|
|
<httpRuntime targetFramework="4.5.1" />
|
|
|
|
</system.Web>
|
|
|
|
-->
|
|
|
|
<system.web>
|
|
|
|
<compilation debug="true" targetFramework="4.5.1"/>
|
|
|
|
<httpRuntime targetFramework="4.5"/>
|
|
|
|
<pages controlRenderingCompatibilityVersion="4.0"/>
|
|
|
|
</system.web>
|
|
|
|
|
|
|
|
<system.webServer>
|
2016-04-22 16:54:47 -04:00
|
|
|
<caching enabled="false" />
|
2016-04-20 17:15:14 -04:00
|
|
|
<staticContent>
|
|
|
|
<remove fileExtension=".json" />
|
|
|
|
<mimeMap fileExtension=".json" mimeType="application/json" />
|
|
|
|
</staticContent>
|
|
|
|
</system.webServer>
|
|
|
|
</configuration>
|