App.config 1.0 KB

123456789101112131415161718192021
  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=5.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. <runtime>
  14. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  15. <dependentAssembly>
  16. <assemblyIdentity name="Microsoft.Practices.ServiceLocation" publicKeyToken="31bf3856ad364e35" culture="neutral"/>
  17. <bindingRedirect oldVersion="0.0.0.0-1.3.0.0" newVersion="1.3.0.0"/>
  18. </dependentAssembly>
  19. </assemblyBinding>
  20. </runtime>
  21. <startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1"/></startup></configuration>