| Adam Connelly | 0c0649d | 2015-12-26 15:55:05 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> | 
|  | 2 | <!-- | 
|  | 3 | Licensed to the Apache Software Foundation (ASF) under one | 
|  | 4 | or more contributor license agreements. See the NOTICE file | 
|  | 5 | distributed with this work for additional information | 
|  | 6 | regarding copyright ownership. The ASF licenses this file | 
|  | 7 | to you under the Apache License, Version 2.0 (the | 
|  | 8 | "License"); you may not use this file except in compliance | 
|  | 9 | with the License. You may obtain a copy of the License at | 
|  | 10 |  | 
|  | 11 | http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 12 |  | 
|  | 13 | Unless required by applicable law or agreed to in writing, | 
|  | 14 | software distributed under the License is distributed on an | 
|  | 15 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | 
|  | 16 | KIND, either express or implied. See the License for the | 
|  | 17 | specific language governing permissions and limitations | 
|  | 18 | under the License. | 
|  | 19 | --> | 
|  | 20 | <configuration> | 
|  | 21 | <configSections> | 
|  | 22 | <sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> | 
|  | 23 | <section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" /> | 
|  | 24 | <section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" /> | 
|  | 25 | </sectionGroup> | 
|  | 26 | </configSections> | 
|  | 27 |  | 
|  | 28 | <system.web.webPages.razor> | 
|  | 29 | <host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | 
|  | 30 | <pages pageBaseType="System.Web.Mvc.WebViewPage"> | 
|  | 31 | <namespaces> | 
|  | 32 | <add namespace="System.Web.Mvc" /> | 
|  | 33 | <add namespace="System.Web.Mvc.Ajax" /> | 
|  | 34 | <add namespace="System.Web.Mvc.Html" /> | 
|  | 35 | <add namespace="System.Web.Optimization"/> | 
|  | 36 | <add namespace="System.Web.Routing" /> | 
|  | 37 | <add namespace="ThriftMVCTest" /> | 
|  | 38 | </namespaces> | 
|  | 39 | </pages> | 
|  | 40 | </system.web.webPages.razor> | 
|  | 41 |  | 
|  | 42 | <appSettings> | 
|  | 43 | <add key="webpages:Enabled" value="false" /> | 
|  | 44 | </appSettings> | 
|  | 45 |  | 
|  | 46 | <system.webServer> | 
|  | 47 | <handlers> | 
|  | 48 | <remove name="BlockViewHandler"/> | 
|  | 49 | <add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler" /> | 
|  | 50 | </handlers> | 
|  | 51 | </system.webServer> | 
|  | 52 |  | 
|  | 53 | <system.web> | 
|  | 54 | <compilation> | 
|  | 55 | <assemblies> | 
|  | 56 | <add assembly="System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | 
|  | 57 | </assemblies> | 
|  | 58 | </compilation> | 
|  | 59 | </system.web> | 
|  | 60 | </configuration> |