App.config 2.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <configSections>
  4. <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System">
  5. <section name="DevExpress.LookAndFeel.Design.AppSettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  6. </sectionGroup>
  7. <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
  8. <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  9. </configSections>
  10. <applicationSettings>
  11. <DevExpress.LookAndFeel.Design.AppSettings>
  12. <setting name="DPIAwarenessMode" serializeAs="String">
  13. <value>System</value>
  14. </setting>
  15. <setting name="RegisterBonusSkins" serializeAs="String">
  16. <value>True</value>
  17. </setting>
  18. </DevExpress.LookAndFeel.Design.AppSettings>
  19. </applicationSettings>
  20. <startup>
  21. <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
  22. </startup>
  23. <entityFramework>
  24. <providers>
  25. <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
  26. <provider invariantName="System.Data.SQLite.EF6" type="System.Data.SQLite.EF6.SQLiteProviderServices, System.Data.SQLite.EF6" />
  27. </providers>
  28. </entityFramework>
  29. <system.data>
  30. <DbProviderFactories>
  31. <remove invariant="System.Data.SQLite.EF6" />
  32. <add name="SQLite Data Provider (Entity Framework 6)" invariant="System.Data.SQLite.EF6" description=".NET Framework Data Provider for SQLite (Entity Framework 6)" type="System.Data.SQLite.EF6.SQLiteProviderFactory, System.Data.SQLite.EF6" />
  33. <remove invariant="System.Data.SQLite" /><add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".NET Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" /></DbProviderFactories>
  34. </system.data>
  35. </configuration>