Nenhuma Descrição

App.config 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <startup>
  4. <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
  5. </startup>
  6. <appSettings>
  7. <!--本机外网IP-->
  8. <add key="ip" value="192.168.1.21" />
  9. <!--本机外网端口-->
  10. <add key="port" value="2022" />
  11. <!--客户端连接最大数-->
  12. <add key="maxnumber" value="1000" />
  13. <!--每页数量-->
  14. <add key="pagenumer" value="10" />
  15. <!--游客简称-->
  16. <add key="anyname" value="游客" />
  17. <!--首次连接欢迎词-->
  18. <add key="welcome" value="欢迎你!" />
  19. <!--客服不在线-->
  20. <add key="busy" value="客服不在线,请稍后咨询!" />
  21. <!--客户ip是黑名单-->
  22. <add key="black" value="当前状态异常,请电话联系!" />
  23. <!--机器人回复不了-->
  24. <add key="noai" value="请咨询其他内容!" />
  25. <!--转人工客服成功-->
  26. <add key="turn" value="连接人工客服成功!" />
  27. <!--IP获取地址url-->
  28. <add key="ipurl" value="http://ip.taobao.com/service/getIpInfo2.php" />
  29. </appSettings>
  30. <connectionStrings>
  31. <add name="ConnectionString" connectionString="Data Source=192.168.4.18;User ID=sa;pwd=800100;Initial Catalog=CallCenter5.1;" />
  32. </connectionStrings>
  33. <runtime>
  34. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  35. <dependentAssembly>
  36. <assemblyIdentity name="SuperSocket.SocketBase" publicKeyToken="6c80000676988ebb" culture="neutral" />
  37. <bindingRedirect oldVersion="0.0.0.0-1.6.0.4" newVersion="1.6.0.4" />
  38. </dependentAssembly>
  39. <dependentAssembly>
  40. <assemblyIdentity name="SuperSocket.Common" publicKeyToken="6c80000676988ebb" culture="neutral" />
  41. <bindingRedirect oldVersion="0.0.0.0-1.6.0.4" newVersion="1.6.0.4" />
  42. </dependentAssembly>
  43. <dependentAssembly>
  44. <assemblyIdentity name="log4net" publicKeyToken="669e0ddf0bb1aa2a" culture="neutral" />
  45. <bindingRedirect oldVersion="0.0.0.0-1.2.13.0" newVersion="1.2.13.0" />
  46. </dependentAssembly>
  47. </assemblyBinding>
  48. </runtime>
  49. </configuration>