Advertisement
Guest User

sdafas

a guest
Jan 8th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.95 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. For more information on how to configure your ASP.NET application, please visit
  4. http://go.microsoft.com/fwlink/?LinkId=301880
  5. -->
  6. <configuration>
  7. <configSections>
  8. <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
  9. <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  10. </configSections>
  11. <connectionStrings>
  12. <add name="DefaultConnection" connectionString="server=127.0.0.1;user id=root;password=test;persistsecurityinfo=True;database=rgnaltislive" providerName="MySql.Data.MySqlClient" />
  13. <add name="SecurityDbConnection" connectionString="server=127.0.0.1; user Id=root; password=test; persistsecurityinfo=True;database=rgnaltiswebapp" providerName="MySql.Data.MySqlClient"/>
  14. </connectionStrings>
  15. <appSettings>
  16. <add key="webpages:Version" value="3.0.0.0" />
  17. <add key="webpages:Enabled" value="false" />
  18. <add key="ClientValidationEnabled" value="true" />
  19. <add key="UnobtrusiveJavaScriptEnabled" value="true" />
  20. </appSettings>
  21. <system.web>
  22. <authentication mode="None" />
  23. <compilation debug="true" targetFramework="4.5.2" />
  24. <httpRuntime targetFramework="4.5.2" />
  25. <httpModules>
  26. <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" />
  27. </httpModules>
  28. </system.web>
  29. <system.webServer>
  30. <modules>
  31. <remove name="FormsAuthentication" />
  32. <remove name="ApplicationInsightsWebTracking" />
  33. <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" preCondition="managedHandler" />
  34. </modules>
  35. <handlers>
  36. <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
  37. <remove name="OPTIONSVerbHandler" />
  38. <remove name="TRACEVerbHandler" />
  39. <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
  40. </handlers>
  41. <validation validateIntegratedModeConfiguration="false" />
  42. </system.webServer>
  43. <runtime>
  44. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  45. <dependentAssembly>
  46. <assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" />
  47. <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
  48. </dependentAssembly>
  49. <dependentAssembly>
  50. <assemblyIdentity name="Microsoft.Owin.Security.OAuth" publicKeyToken="31bf3856ad364e35" />
  51. <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
  52. </dependentAssembly>
  53. <dependentAssembly>
  54. <assemblyIdentity name="Microsoft.Owin.Security.Cookies" publicKeyToken="31bf3856ad364e35" />
  55. <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
  56. </dependentAssembly>
  57. <dependentAssembly>
  58. <assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" />
  59. <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
  60. </dependentAssembly>
  61. <dependentAssembly>
  62. <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" />
  63. <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
  64. </dependentAssembly>
  65. <dependentAssembly>
  66. <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
  67. <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
  68. </dependentAssembly>
  69. <dependentAssembly>
  70. <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
  71. <bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
  72. </dependentAssembly>
  73. <dependentAssembly>
  74. <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
  75. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  76. </dependentAssembly>
  77. <dependentAssembly>
  78. <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  79. <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.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="EntityFramework" publicKeyToken="b77a5c561934e089" culture="neutral" />
  87. <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
  88. </dependentAssembly>
  89. <dependentAssembly>
  90. <assemblyIdentity name="MySql.Data" publicKeyToken="c5687fc88969c44d" culture="neutral" />
  91. <bindingRedirect oldVersion="0.0.0.0-6.6.4.0" newVersion="6.6.4.0" />
  92. </dependentAssembly>
  93. </assemblyBinding>
  94. </runtime>
  95. <entityFramework>
  96. <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
  97. <parameters>
  98. <parameter value="mssqllocaldb" />
  99. </parameters>
  100. </defaultConnectionFactory>
  101. <providers>
  102. <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
  103. <provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6, Version=6.9.8.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d">
  104. </provider></providers>
  105. </entityFramework>
  106. <system.codedom>
  107. <compilers>
  108. <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701" />
  109. <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" />
  110. </compilers>
  111. </system.codedom>
  112. <system.data>
  113. <DbProviderFactories>
  114. <remove invariant="MySql.Data.MySqlClient" />
  115. <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.8.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
  116. </DbProviderFactories>
  117. </system.data></configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement