Advertisement
Guest User

Untitled

a guest
Nov 30th, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.09 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="Sell2StaffDbContext" providerName="System.Data.SqlClient" connectionString="Server=HAWS;Database=Sell2Staff;User Id=WebsiteAdmin;Password=SpedalonyGrzesiuKurwaCwel123!" /> -->
  13. <add name="Sell2StaffDbContext" providerName="System.Data.SqlClient" connectionString="Server=(local)\SQLEXPRESS;Database=Sell2Staff;User Id=WebsiteAdmin;Password=SpedalonyGrzesiuKurwaCwel123!" />
  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. <add key="StripeApiKey" value="sk_test_hAxXNc4cAKCmdquCvNBpkJBt" />
  21. </appSettings>
  22. <system.web>
  23. <compilation debug="true" targetFramework="4.5.1" />
  24. <httpRuntime targetFramework="4.5.1" />
  25. <authentication mode="Forms">
  26. <forms loginUrl="~/Login" timeout="2880" />
  27. </authentication>
  28. </system.web>
  29. <runtime>
  30. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  31. <dependentAssembly>
  32. <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
  33. <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
  34. </dependentAssembly>
  35. <dependentAssembly>
  36. <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
  37. <bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
  38. </dependentAssembly>
  39. <dependentAssembly>
  40. <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
  41. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  42. </dependentAssembly>
  43. <dependentAssembly>
  44. <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
  45. <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  46. </dependentAssembly>
  47. <dependentAssembly>
  48. <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  49. <bindingRedirect oldVersion="1.0.0.0-5.1.0.0" newVersion="5.1.0.0" />
  50. </dependentAssembly>
  51. <dependentAssembly>
  52. <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
  53. <bindingRedirect oldVersion="0.0.0.0-4.5.0.0" newVersion="4.5.0.0" />
  54. </dependentAssembly>
  55. </assemblyBinding>
  56. </runtime>
  57. <entityFramework>
  58. <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
  59. <parameters>
  60. <parameter value="v11.0" />
  61. </parameters>
  62. </defaultConnectionFactory>
  63. <providers>
  64. <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
  65. </providers>
  66. </entityFramework>
  67. <!--
  68. <system.webServer>
  69. <caching enabled="false"></caching>
  70. <rewrite>
  71. <rules>
  72. <clear />
  73. <rule name="Redirect to https" stopProcessing="true">
  74. <match url="(.*)" />
  75. <conditions>
  76. <add input="{HTTPS}" pattern="off" ignoreCase="true" />
  77. </conditions>
  78. <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" appendQueryString="false" />
  79. </rule>
  80. </rules>
  81. </rewrite>
  82. </system.webServer>
  83. -->
  84.  
  85. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement