app.config 801 B

1234567891011121314151617181920
  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. <runtime>
  7. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  8. <probing prvatePath="bin/libs" />
  9. </assemblyBinding>
  10. </runtime>
  11. <startup>
  12. <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
  13. </startup>
  14. <entityFramework>
  15. <providers>
  16. <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
  17. </providers>
  18. </entityFramework>
  19. </configuration>