-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathWeb.config
More file actions
56 lines (56 loc) · 2.53 KB
/
Web.config
File metadata and controls
56 lines (56 loc) · 2.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="webpages:Version" value="2.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="PreserveLoginUrl" value="true" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
<add key="jsengineswitcher:Samples:TextContentDirectoryPath" value="../SharedData/text-content" />
</appSettings>
<system.web>
<compilation debug="false" targetFramework="4.0" />
<pages>
<namespaces>
<add namespace="System.Web.Helpers" />
<add namespace="System.Web.Mvc" />
<add namespace="System.Web.Mvc.Ajax" />
<add namespace="System.Web.Mvc.Html" />
<add namespace="System.Web.Routing" />
<add namespace="System.Web.WebPages" />
</namespaces>
</pages>
</system.web>
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<modules runAllManagedModulesForAllRequests="true" />
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="AdvancedStringBuilder" culture="neutral" publicKeyToken="e818a2fc08933ddb" />
<bindingRedirect oldVersion="0.0.0.0-0.2.0.0" newVersion="0.2.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="PolyfillsForOldDotNet.System.Buffers" culture="neutral" publicKeyToken="7c096c79220f0d91" />
<bindingRedirect oldVersion="0.0.0.0-0.1.3.0" newVersion="0.1.3.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="PolyfillsForOldDotNet.System.Threading" culture="neutral" publicKeyToken="7c096c79220f0d91" />
<bindingRedirect oldVersion="0.0.0.0-0.1.3.0" newVersion="0.1.3.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>