App.config 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. <entityFramework>
  7. <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
  8. <parameters>
  9. <parameter value="mssqllocaldb" />
  10. </parameters>
  11. </defaultConnectionFactory>
  12. <providers>
  13. <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
  14. </providers>
  15. </entityFramework>
  16. <system.data>
  17. <DbProviderFactories>
  18. <remove invariant="MySql.Data.MySqlClient" />
  19. <add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
  20. </DbProviderFactories>
  21. </system.data>
  22. <connectionStrings>
  23. <add name="MSHO.DBConnection" connectionString="Data Source=101.0.0.30;Initial Catalog=MSHO;User ID=sa;Password=ycd123;" providerName="System.Data.SqlClient" />
  24. </connectionStrings>
  25. <appSettings>
  26. <add key="IP" value=""/>
  27. <add key="Port" value="9001"/>
  28. <add key="MaxConnection" value="100"/>
  29. <add key="BufferSize" value="8192"/>
  30. <add key="PrivateKey" value=""/>
  31. <add key="FileServerConnection" value="Data Source=localhost;Initial Catalog=MSHO;buffer size=524288;" />
  32. <!--<add key="FileServerConnection" value="Data Source=101.0.0.30;Initial Catalog=MSHO;buffer size=524288;" />-->
  33. </appSettings>
  34. <startup>
  35. <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
  36. </startup>
  37. </configuration>