-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config
More file actions
30 lines (30 loc) · 1.49 KB
/
app.config
File metadata and controls
30 lines (30 loc) · 1.49 KB
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>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup>
<system.serviceModel>
<bindings>
<customBinding>
<binding name="CustomBinding_ILive">
<binaryMessageEncoding/>
<httpsTransport/>
</binding>
<binding name="CustomBinding_IGeocachingMobile">
<binaryMessageEncoding/>
<httpsTransport/>
</binding>
</customBinding>
</bindings>
<client>
<endpoint address="https://api.groundspeak.com/LiveV6/geocaching.svc/Silverlightsoap" binding="customBinding" bindingConfiguration="CustomBinding_ILive" contract="ServiceReference1.ILive" name="CustomBinding_ILive"/>
<endpoint address="https://api.groundspeak.com/LiveV6/geocaching.svc/InternalSilverlightsoap" binding="customBinding" bindingConfiguration="CustomBinding_IGeocachingMobile" contract="ServiceReference1.IGeocachingMobile" name="CustomBinding_IGeocachingMobile"/>
</client>
</system.serviceModel>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>