-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathapp.config
30 lines (30 loc) · 1.3 KB
/
app.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="XiboClient.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<system.serviceModel>
<bindings />
<client />
</system.serviceModel>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Swan.Lite" publicKeyToken="30c707c872729fff" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.6.1.0" newVersion="2.6.1.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<applicationSettings>
<XiboClient.Properties.Settings>
<setting name="XiboClient_xmds_xmds" serializeAs="String">
<value>http://localhost/xmds.php?v=7</value>
</setting>
</XiboClient.Properties.Settings>
</applicationSettings>
</configuration>