| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 | <?xml version="1.0" encoding="utf-8" ?><configuration>	<configSections>		<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >			<section name="Ips.Sps.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />		</sectionGroup>	</configSections>	<connectionStrings>		<!--<add name="spsdb" connectionString="XpoProvider=SQLite;Data Source=D:\lq\db\sps1207.db"/>-->		<!--<add name="spsdb" connectionString="XpoProvider=SQLite;Data Source=D:\lq\db\sps1207.db"/>-->		<!--<add name="spsdb" connectionString="XpoProvider=SQLite;Data Source=F:\spsdata\sps2.db"/>-->		<!--<add name="spsdb" connectionString="XpoProvider=SQLite;Data Source=A:\tdata\spsdata\sps2_th.db"/>-->		<!--<add name="spsdb" connectionString="XpoProvider=SQLite;Data Source=A:\tdata\spsdata\sps_ww.db"/>-->		<!--add name="spsdb" connectionString="XpoProvider=MySql;Server=MyServerAddress;User ID=MyUserName;Password=MyPassword;Database=sgsdb2;Persist Security Info= true;Charset=utf8"/-->		<!--<add name="spsdb" connectionString="XpoProvider=Postgres;Server=127.0.0.1;User ID=postgres;Password=123456;Database=spsdb;Encoding=UNICODE"/>-->		<!--add name="spsdb" connectionString="XpoProvider=ODPManaged;Data Source=TORCL;User ID=sgsdb2;Password=MyPassword"/-->	</connectionStrings>	<appSettings>		<add key="AppName" value="信号定位平台"/>		<add key ="HttpPort" value="16015"/>		<add key="SkinName" value="" />		<add key="PaletteName" value="" />		<add key="CompactMode" value="true"/>		<add key="EnableCatchFixError" value="false"/>		<add key="ScoutAdTimes" value="2"/>		<add key="AdWaitTime" value="3"/>		<add key="FileClearPath" value="e:\data"/>		<add key="RefTimeOut" value="10"/>		<add key="UseGpuDdc" value="false"/>		<add key="NoRefIsValidPos" value="true"/>		<add key="DfoLocTurn" value="2225 "/>		<add key="DefaultStdfErr" value="0"/>		<add key="EnableLocGdopErr" value="false"/>		<add key="EnablEphTle" value="false"/>		<add key="EnableDtfLoc32" value="false"/>		<!--采集服务Http基地址-->		<add key="AdBaseAddr" value="http://192.168.0.10:16001" />		<!--要随平台启动的子程序(子程序放在平台根目录plugins子目录中)-->		<add key="Plugins" value="采集服务.exe,GPU服务.exe"/>	</appSettings>	<runtime>		<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">			<probing privatePath="AddIns;" />			<dependentAssembly>				<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />				<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" />			</dependentAssembly>		</assemblyBinding>	</runtime>	<userSettings>		<Ips.Sps.Properties.Settings>			<setting name="SkinName" serializeAs="String">				<value />			</setting>			<setting name="Palette" serializeAs="String">				<value />			</setting>			<setting name="CompactMode" serializeAs="String">				<value>False</value>			</setting>		</Ips.Sps.Properties.Settings>	</userSettings></configuration>
 |