Adam Connelly | 0c0649d | 2015-12-26 15:55:05 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | |
| 3 | <!-- |
| 4 | Licensed to the Apache Software Foundation (ASF) under one |
| 5 | or more contributor license agreements. See the NOTICE file |
| 6 | distributed with this work for additional information |
| 7 | regarding copyright ownership. The ASF licenses this file |
| 8 | to you under the Apache License, Version 2.0 (the |
| 9 | "License"); you may not use this file except in compliance |
| 10 | with the License. You may obtain a copy of the License at |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | Unless required by applicable law or agreed to in writing, |
| 15 | software distributed under the License is distributed on an |
| 16 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 17 | KIND, either express or implied. See the License for the |
| 18 | specific language governing permissions and limitations |
| 19 | under the License. |
| 20 | --> |
| 21 | |
| 22 | <!-- |
| 23 | For more information on how to configure your ASP.NET application, please visit |
| 24 | http://go.microsoft.com/fwlink/?LinkId=301880 |
| 25 | --> |
| 26 | <configuration> |
| 27 | <appSettings> |
| 28 | <add key="webpages:Version" value="3.0.0.0" /> |
| 29 | <add key="webpages:Enabled" value="false" /> |
| 30 | <add key="ClientValidationEnabled" value="true" /> |
| 31 | <add key="UnobtrusiveJavaScriptEnabled" value="true" /> |
| 32 | <add key="owin:AutomaticAppStartup" value="false" /> |
| 33 | </appSettings> |
| 34 | <system.web> |
| 35 | <authentication mode="None" /> |
| 36 | <compilation debug="true" targetFramework="4.5" /> |
| 37 | <httpRuntime targetFramework="4.5" /> |
| 38 | </system.web> |
| 39 | <system.webServer> |
| 40 | <modules> |
| 41 | <remove name="FormsAuthentication" /> |
| 42 | </modules> |
| 43 | <handlers> |
| 44 | <add name="AsyncHttpHandler" verb="*" path="Async.thrift" type="ThriftMVCTest.AsyncHttpHandler, ThriftMVCTest" /> |
| 45 | <add name="SyncHttpHandler" verb="*" path="Sync.thrift" type="ThriftMVCTest.SyncHttpHandler, ThriftMVCTest" /> |
| 46 | </handlers> |
| 47 | </system.webServer> |
| 48 | <runtime> |
| 49 | <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
| 50 | <dependentAssembly> |
| 51 | <assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" /> |
| 52 | <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" /> |
| 53 | </dependentAssembly> |
| 54 | <dependentAssembly> |
| 55 | <assemblyIdentity name="Microsoft.Owin.Security.OAuth" publicKeyToken="31bf3856ad364e35" /> |
| 56 | <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" /> |
| 57 | </dependentAssembly> |
| 58 | <dependentAssembly> |
| 59 | <assemblyIdentity name="Microsoft.Owin.Security.Cookies" publicKeyToken="31bf3856ad364e35" /> |
| 60 | <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" /> |
| 61 | </dependentAssembly> |
| 62 | <dependentAssembly> |
| 63 | <assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" /> |
| 64 | <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" /> |
| 65 | </dependentAssembly> |
| 66 | <dependentAssembly> |
| 67 | <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" /> |
| 68 | <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" /> |
| 69 | </dependentAssembly> |
| 70 | <dependentAssembly> |
| 71 | <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" /> |
| 72 | <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" /> |
| 73 | </dependentAssembly> |
| 74 | <dependentAssembly> |
| 75 | <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" /> |
| 76 | <bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" /> |
| 77 | </dependentAssembly> |
| 78 | <dependentAssembly> |
| 79 | <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" /> |
| 80 | <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> |
| 81 | </dependentAssembly> |
| 82 | <dependentAssembly> |
| 83 | <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" /> |
| 84 | <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" /> |
| 85 | </dependentAssembly> |
| 86 | <dependentAssembly> |
| 87 | <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" /> |
| 88 | <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> |
| 89 | </dependentAssembly> |
| 90 | </assemblyBinding> |
| 91 | </runtime> |
| 92 | </configuration> |