AOES.exe.config.deploy 1.5 KB

123456789101112131415161718192021222324252627282930
  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. <connectionStrings>
  7. <add name="myconn" connectionString="server=192.168.1.25;port=3306;database=database;user=user;password=password;charset=utf8" />
  8. </connectionStrings>
  9. <entityFramework>
  10. <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
  11. <providers>
  12. <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
  13. </providers>
  14. </entityFramework>
  15. <startup>
  16. <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
  17. </startup>
  18. <runtime>
  19. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  20. <dependentAssembly>
  21. <assemblyIdentity name="Google.Protobuf" publicKeyToken="a7d26565bac4d604" culture="neutral" />
  22. <bindingRedirect oldVersion="0.0.0.0-3.9.1.0" newVersion="3.9.1.0" />
  23. </dependentAssembly>
  24. <dependentAssembly>
  25. <assemblyIdentity name="BouncyCastle.Crypto" publicKeyToken="0e99375e54769942" culture="neutral" />
  26. <bindingRedirect oldVersion="0.0.0.0-1.8.5.0" newVersion="1.8.5.0" />
  27. </dependentAssembly>
  28. </assemblyBinding>
  29. </runtime>
  30. </configuration>