app.config 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. <dependentAssembly>
  14. <assemblyIdentity name="Microsoft.Practices.ServiceLocation" publicKeyToken="31bf3856ad364e35" culture="neutral"/>
  15. <bindingRedirect oldVersion="0.0.0.0-1.3.0.0" newVersion="1.3.0.0"/>
  16. </dependentAssembly>
  17. <dependentAssembly>
  18. <assemblyIdentity name="System.Windows.Interactivity" publicKeyToken="31bf3856ad364e35" culture="neutral"/>
  19. <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/>
  20. </dependentAssembly>
  21. <dependentAssembly>
  22. <assemblyIdentity name="Microsoft.Practices.Prism.SharedInterfaces" publicKeyToken="31bf3856ad364e35" culture="neutral"/>
  23. <bindingRedirect oldVersion="0.0.0.0-1.1.1.0" newVersion="1.1.1.0"/>
  24. </dependentAssembly>
  25. <dependentAssembly>
  26. <assemblyIdentity name="Microsoft.Practices.Prism.PubSubEvents" publicKeyToken="31bf3856ad364e35" culture="neutral"/>
  27. <bindingRedirect oldVersion="0.0.0.0-1.1.0.0" newVersion="1.1.0.0"/>
  28. </dependentAssembly>
  29. </assemblyBinding>
  30. </runtime>
  31. <startup>
  32. <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1"/>
  33. </startup>
  34. <appSettings>
  35. <add key="IP" value="192.168.11.95"/>
  36. <add key="Port" value="8888"/>
  37. <add key="Account" value="egametang@163.com"/>
  38. <add key="Password" value="163bio1"/>
  39. <add key="NodePath" value="D:\Source\Demo\battledemo\Assets\Resources\Config\node.bytes"/>
  40. <add key="ClientSettingsProvider.ServiceUri" value=""/>
  41. </appSettings>
  42. <system.serviceModel>
  43. <bindings>
  44. <netTcpBinding>
  45. <binding name="NetTcpBinding_Calculator"/>
  46. </netTcpBinding>
  47. </bindings>
  48. <client>
  49. <endpoint address="net.tcp://localhost:10000/Calculator/" binding="netTcpBinding" bindingConfiguration="NetTcpBinding_Calculator" contract="Proxy.Calculator" name="NetTcpBinding_Calculator">
  50. </endpoint>
  51. </client>
  52. </system.serviceModel>
  53. <system.web>
  54. <membership defaultProvider="ClientAuthenticationMembershipProvider">
  55. <providers>
  56. <add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri=""/>
  57. </providers>
  58. </membership>
  59. <roleManager defaultProvider="ClientRoleProvider" enabled="true">
  60. <providers>
  61. <add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400"/>
  62. </providers>
  63. </roleManager>
  64. </system.web>
  65. </configuration>