You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

120 lines
7.1 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. 有关如何配置 ASP.NET 应用程序的详细信息,请访问
  4. http://go.microsoft.com/fwlink/?LinkId=169433
  5. -->
  6. <configuration>
  7. <configSections>
  8. <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
  9. <section name="redisconfig" type="Learun.Cache.Redis.RedisConfigInfo,Learun.Cache.Redis" />
  10. <section name="unity" type="Microsoft.Practices.Unity.Configuration.UnityConfigurationSection,Microsoft.Practices.Unity.Configuration" />
  11. <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
  12. <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  13. <section name="oracle.manageddataaccess.client" type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.122.21.1, Culture=neutral, PublicKeyToken=89b483f429c47342" />
  14. </configSections>
  15. <unity configSource="XmlConfig\ioc.config" />
  16. <appSettings configSource="XmlConfig\system.config" />
  17. <log4net configSource="XmlConfig\log4net.config" />
  18. <connectionStrings configSource="XmlConfig\database.config">
  19. </connectionStrings>
  20. <!--
  21. 有关 web.config 更改的说明,请参见 http://go.microsoft.com/fwlink/?LinkId=235367。
  22. 可在 <httpRuntime> 标记上设置以下特性。
  23. <system.Web>
  24. <httpRuntime targetFramework="4.5" />
  25. </system.Web>
  26. -->
  27. <system.web>
  28. <compilation debug="true" targetFramework="4.6.2" />
  29. <pages controlRenderingCompatibilityVersion="4.0" />
  30. <!--最大请求长度,单位为KB(千字节),默认为4M,设置为1G,上限为2G -->
  31. <httpRuntime maxRequestLength="1048576" executionTimeout="3600" />
  32. <httpHandlers>
  33. <add verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="*" />
  34. </httpHandlers>
  35. </system.web>
  36. <entityFramework>
  37. <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
  38. <parameters>
  39. <parameter value="mssqllocaldb" />
  40. </parameters>
  41. </defaultConnectionFactory>
  42. <providers>
  43. <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
  44. <provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
  45. <provider invariantName="Oracle.ManagedDataAccess.Client" type="Oracle.ManagedDataAccess.EntityFramework.EFOracleProviderServices, Oracle.ManagedDataAccess.EntityFramework, Version=6.122.21.1, Culture=neutral, PublicKeyToken=89b483f429c47342" />
  46. </providers>
  47. </entityFramework>
  48. <system.webServer>
  49. <validation validateIntegratedModeConfiguration="false" />
  50. <httpErrors existingResponse="PassThrough" />
  51. <handlers>
  52. <add name="Nancy" verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="*" />
  53. <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
  54. <remove name="OPTIONSVerbHandler" />
  55. <remove name="TRACEVerbHandler" />
  56. <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
  57. </handlers>
  58. </system.webServer>
  59. <system.data>
  60. <DbProviderFactories>
  61. <remove invariant="MySql.Data.MySqlClient" />
  62. <add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
  63. <remove invariant="Oracle.ManagedDataAccess.Client" />
  64. <add name="ODP.NET, Managed Driver" invariant="Oracle.ManagedDataAccess.Client" description="Oracle Data Provider for .NET, Managed Driver" type="Oracle.ManagedDataAccess.Client.OracleClientFactory, Oracle.ManagedDataAccess, Version=4.122.21.1, Culture=neutral, PublicKeyToken=89b483f429c47342" />
  65. </DbProviderFactories>
  66. </system.data>
  67. <runtime>
  68. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  69. <dependentAssembly>
  70. <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
  71. <bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
  72. </dependentAssembly>
  73. <dependentAssembly>
  74. <assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  75. <bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" />
  76. </dependentAssembly>
  77. <dependentAssembly>
  78. <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
  79. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  80. </dependentAssembly>
  81. <dependentAssembly>
  82. <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
  83. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  84. </dependentAssembly>
  85. <dependentAssembly>
  86. <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  87. <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
  88. </dependentAssembly>
  89. <dependentAssembly>
  90. <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  91. <bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
  92. </dependentAssembly>
  93. <dependentAssembly>
  94. <assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
  95. <bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
  96. </dependentAssembly>
  97. <dependentAssembly>
  98. <assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
  99. <bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
  100. </dependentAssembly>
  101. <dependentAssembly>
  102. <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
  103. <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
  104. </dependentAssembly>
  105. <dependentAssembly>
  106. <assemblyIdentity name="System.Text.Json" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
  107. <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
  108. </dependentAssembly>
  109. <dependentAssembly>
  110. <assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
  111. <bindingRedirect oldVersion="0.0.0.0-4.1.4.0" newVersion="4.1.4.0" />
  112. </dependentAssembly>
  113. <dependentAssembly>
  114. <assemblyIdentity name="Microsoft.Bcl.AsyncInterfaces" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
  115. <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
  116. </dependentAssembly>
  117. </assemblyBinding>
  118. </runtime>
  119. </configuration>