App.config 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <configSections>
  4. <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System">
  5. <section name="DevExpress.LookAndFeel.Design.AppSettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  6. </sectionGroup>
  7. </configSections>
  8. <applicationSettings>
  9. <DevExpress.LookAndFeel.Design.AppSettings>
  10. <setting name="DPIAwarenessMode" serializeAs="String">
  11. <value>System</value>
  12. </setting>
  13. <setting name="RegisterBonusSkins" serializeAs="String">
  14. <value>True</value>
  15. </setting>
  16. </DevExpress.LookAndFeel.Design.AppSettings>
  17. </applicationSettings>
  18. <connectionStrings>
  19. <add name="OracleCon" connectionString="Data Source=192.168.1.111:1521/ORCL;User ID=DW5S;Password=123456"/>
  20. </connectionStrings>
  21. <appSettings>
  22. <!--程序标题-->
  23. <add key="SystemName" value="5S定位平台" />
  24. <!--App使用的Web端口-->
  25. <add key="HttpPort" value="8090"/>
  26. <!--系统时区-->
  27. <add key ="TimeZone" value="8"/>
  28. <!--公司名称(没有则不会显示版权)-->
  29. <add key="Company" value="" />
  30. <!--本机IP,没有则由程序自动获取-->
  31. <add key="LocalIP" value="" />
  32. <!--自采集地图源URL-->
  33. <add key="ZCJ_URL" value="http://192.168.1.7:12338/static/source/assets/textures" />
  34. <!--数据中心地图源URL-->
  35. <add key="SJZX_URL" value="http://192.168.1.7:5889/MapServer" />
  36. <!--取参考时间 单位:分钟-->
  37. <add key="TakeRefTime" value="10" />
  38. <!--是否启用地图定位点聚合 启用=1,禁用=0-->
  39. <add key="UseMapCluster" value="0" />
  40. <!--是否启用平台设备状态收集功能 启用=1,禁用=0-->
  41. <add key="UseGatherDevState" value="0" />
  42. <!--定位点刷新间隔(秒)-->
  43. <add key="RefreshPosTime" value="5"/>
  44. <!--参估绘图外部程序的路径(可设置为绝对路径,也可设置为平台目录的相对路径)-->
  45. <add key="CgDrawExe" value="Draw\Everything.exe" />
  46. <!--星地任务是否使用仿真时频差等进行流程测试-->
  47. <add key="ForTest" value="true"/>
  48. </appSettings>
  49. </configuration>