added samples
[windows-sources.git] / sdk / samples / WCFSamples / TechnologySamples / Basic / Management / ETWTracing / CS / client / App.config
blob030ecf2c4970860a0b823c7a7815a7a3d3793c4d
1 <?xml version="1.0" encoding="utf-8"?>
2 <configuration>
3 <system.diagnostics>
4 <sources>
5 <source name="System.ServiceModel" switchValue="Information, ActivityTracing"
6 propagateActivity="true">
7 <listeners>
8 <add name="ETW" />
9 </listeners>
10 </source>
11 </sources>
12 <sharedListeners>
13 <add type="Microsoft.ServiceModel.Samples.EtwTraceListener, EtwTraceListener, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"
14 name="ETW" traceOutputOptions="Timestamp"/>
15 </sharedListeners>
16 <trace autoflush="true" />
17 </system.diagnostics>
18 <system.serviceModel>
19 <client>
20 <endpoint address="http://localhost/servicemodelsamples/service.svc"
21 binding="wsHttpBinding"
22 contract="Microsoft.ServiceModel.Samples.ICalculator" />
23 </client>
24 </system.serviceModel>
25 </configuration>