App.config 1.4 KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <configSections>
  4. <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
  5. <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  6. </configSections>
  7. <entityFramework>
  8. <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
  9. <parameters>
  10. <parameter value="v11.0" />
  11. </parameters>
  12. </defaultConnectionFactory>
  13. <providers>
  14. <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
  15. </providers>
  16. </entityFramework>
  17. <runtime>
  18. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  19. <dependentAssembly>
  20. <assemblyIdentity name="Autofac" publicKeyToken="17863af14b0044da" culture="neutral" />
  21. <bindingRedirect oldVersion="0.0.0.0-3.5.0.0" newVersion="3.5.0.0" />
  22. </dependentAssembly>
  23. <dependentAssembly>
  24. <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  25. <bindingRedirect oldVersion="0.0.0.0-4.0.0.1" newVersion="4.0.0.1" />
  26. </dependentAssembly>
  27. </assemblyBinding>
  28. </runtime>
  29. </configuration>