~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to samples/ComponentInspector/ComponentInspector/app.config

  • Committer: sk
  • Date: 2011-09-10 05:17:57 UTC
  • Revision ID: halega@halega.com-20110910051757-qfouz1llya9m6boy
4.1.0.7915 Release Candidate 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<configuration>
 
2
        <appSettings>
 
3
                <!-- The directory containing the resources relative to the 
 
4
                 ComponentInspector executable -->
 
5
                <add key="ResourceDirectory" value="..\..\..\data\resources" />
 
6
        </appSettings>
 
7
        
 
8
        <system.diagnostics>
 
9
                <trace autoflush="true" indentsize="2">
 
10
                        <listeners>
 
11
                        <!-- Uncomment this to enable tracing to a log file
 
12
                        <add name="oakland software" 
 
13
                                type="System.Diagnostics.TextWriterTraceListener" 
 
14
                                initializeData="CompInsp.log" /> -->
 
15
                        </listeners>
 
16
                </trace>
 
17
                
 
18
                <switches>
 
19
                        <!-- here is where you set the trace level -->
 
20
                        <add name="oakland software" value="1" />
 
21
                </switches>
 
22
        </system.diagnostics>
 
23
        <system.windows.forms jitDebugging="true" />
 
24
</configuration>
 
25
 
 
26
 
 
27