Advertisement
Guest User

Untitled

a guest
Nov 8th, 2017
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.01 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <configSections>
  4. <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  5. </configSections>
  6. <entityFramework>
  7. <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
  8. <parameters>
  9. <parameter value="v11.0" />
  10. </parameters>
  11. </defaultConnectionFactory>
  12. </entityFramework>
  13. <appSettings configSource="Config\Application\Settings.config" />
  14. <connectionStrings configSource="Config\Database\Connections.config" />
  15. <system.serviceModel>
  16. <bindings configSource="Config\Webservice\Bindings.config" />
  17. <client configSource="Config\Webservice\Endpoints.config" />
  18. </system.serviceModel>
  19. <system.web>
  20. <globalization fileEncoding="utf-8" requestEncoding="utf-8" responseEncoding="utf-8" culture="pt-BR" uiCulture="pt-BR" />
  21. <compilation targetFramework="4.6" debug="true" />
  22. <httpRuntime targetFramework="4.5" />
  23. <customErrors mode="Off" />
  24. <!--customErrors mode="On" redirectMode="ResponseRewrite">
  25. <error statusCode="404" redirect="~/404.html"/>
  26. </customErrors-->
  27. <authentication mode="Forms">
  28. <forms loginUrl="~/Login/Index" timeout="31" />
  29. </authentication>
  30. <pages>
  31. <namespaces>
  32. <add namespace="System.Web.Helpers" />
  33. <add namespace="System.Web.Mvc" />
  34. <add namespace="System.Web.Mvc.Ajax" />
  35. <add namespace="System.Web.Mvc.Html" />
  36. <add namespace="System.Web.Optimization" />
  37. <add namespace="System.Web.Routing" />
  38. <add namespace="System.Web.WebPages" />
  39. </namespaces>
  40. </pages>
  41. </system.web>
  42. <system.webServer>
  43. <security>
  44. <requestFiltering>
  45. <requestLimits maxAllowedContentLength="51200000" />
  46. </requestFiltering>
  47. </security>
  48. <validation validateIntegratedModeConfiguration="false" />
  49. <handlers>
  50. <remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" />
  51. <remove name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" />
  52. <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
  53. <add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" />
  54. <add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" />
  55. <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG,PUT,DELETE,PATCH,OPTIONS" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
  56. </handlers>
  57. </system.webServer>
  58. <runtime>
  59. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  60. <dependentAssembly>
  61. <assemblyIdentity name="DotNetOpenAuth.Core" publicKeyToken="2780ccd10d57b246" />
  62. <bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
  63. </dependentAssembly>
  64. <dependentAssembly>
  65. <assemblyIdentity name="DotNetOpenAuth.AspNet" publicKeyToken="2780ccd10d57b246" />
  66. <bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
  67. </dependentAssembly>
  68. <dependentAssembly>
  69. <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
  70. <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
  71. </dependentAssembly>
  72. <dependentAssembly>
  73. <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  74. <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
  75. </dependentAssembly>
  76. <dependentAssembly>
  77. <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
  78. <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
  79. </dependentAssembly>
  80. <dependentAssembly>
  81. <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
  82. <bindingRedirect oldVersion="0.0.0.0-1.3.0.0" newVersion="1.3.0.0" />
  83. </dependentAssembly>
  84. <dependentAssembly>
  85. <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
  86. <bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
  87. </dependentAssembly>
  88. <dependentAssembly>
  89. <assemblyIdentity name="EntityFramework" publicKeyToken="b77a5c561934e089" culture="neutral" />
  90. <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
  91. </dependentAssembly>
  92. </assemblyBinding>
  93. </runtime>
  94. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement