app.config 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <runtime>
  4. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  5. <dependentAssembly>
  6. <assemblyIdentity name="Microsoft.Practices.Prism" publicKeyToken="31bf3856ad364e35" culture="neutral" />
  7. <bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
  8. </dependentAssembly>
  9. <dependentAssembly>
  10. <assemblyIdentity name="MySql.Data" publicKeyToken="c5687fc88969c44d" culture="neutral" />
  11. <bindingRedirect oldVersion="0.0.0.0-6.6.4.0" newVersion="6.6.4.0" />
  12. </dependentAssembly>
  13. </assemblyBinding>
  14. </runtime>
  15. <startup>
  16. <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
  17. </startup>
  18. <appSettings>
  19. <add key="IP" value="192.168.11.95" />
  20. <add key="Port" value="8888" />
  21. <add key="Account" value="egametang@163.com" />
  22. <add key="Password" value="163bio1" />
  23. </appSettings>
  24. <system.serviceModel>
  25. <bindings>
  26. <netTcpBinding>
  27. <binding name="NetTcpBinding_Calculator" />
  28. </netTcpBinding>
  29. </bindings>
  30. <client>
  31. <endpoint address="net.tcp://localhost:10000/Calculator/" binding="netTcpBinding"
  32. bindingConfiguration="NetTcpBinding_Calculator" contract="Proxy.Calculator"
  33. name="NetTcpBinding_Calculator">
  34. </endpoint>
  35. </client>
  36. </system.serviceModel>
  37. </configuration>