~nunit-core/nunitv2/2.5

« back to all changes in this revision

Viewing changes to src/NUnitTests.config

  • Committer: Charlie Poole
  • Date: 2010-11-07 15:49:05 UTC
  • Revision ID: charlie@nunit.org-20101107154905-77oqt78yz464edhu
Move bin directory as well as NUnitTests.nunit and NUnitTests.config from src to root of project

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="utf-8" ?>
2
 
<configuration>
3
 
<!--
4
 
         This is the configuration file for the NUnitTests.nunit test project. You may
5
 
         need to create a similar configuration file for your own test project. 
6
 
 -->     
7
 
 
8
 
<!--
9
 
         The <NUnit> section is only needed if you want to use a non-default value
10
 
         for any of the settings. It is commented out below. If you are going to use
11
 
   it, you must deifne the NUnit section group and the sections you need.
12
 
 
13
 
   The syntax shown here works for most runtimes. If NUnit fails at startup, you
14
 
   can try specifying the name of the assembly containing the NameValueSectionHandler:
15
 
   
16
 
      <section name="TestCaseBuilder" type="System.Configuration.NameValueSectionHandler, System" />
17
 
      
18
 
   If that fails, try the fully qualified name of the assembly:
19
 
   
20
 
      <section name="TestCaseBuilder" type="System.Configuration.NameValueSectionHandler, System, 
21
 
             Version=2.0.50727.832, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
22
 
             
23
 
   Unfortunately, this last approach makes your config file non-portable across runtimes.
24
 
   -->
25
 
 
26
 
<!--
27
 
  <configSections>
28
 
                <sectionGroup name="NUnit">
29
 
                        <section name="TestCaseBuilder" type="System.Configuration.NameValueSectionHandler"/>
30
 
                        <section name="TestRunner" type="System.Configuration.NameValueSectionHandler"/>
31
 
                </sectionGroup>
32
 
        </configSections>
33
 
 -->
34
 
 
35
 
  <appSettings>
36
 
                <!--   User application and configured property settings go here.-->
37
 
                <!--   Example: <add key="settingName" value="settingValue"/> -->
38
 
                <add key="test.setting" value="54321" />
39
 
        </appSettings>
40
 
 
41
 
<!-- Sample NUnit section group showing all default values -->
42
 
<!--
43
 
        <NUnit>
44
 
                <TestCaseBuilder>
45
 
                        <add key="OldStyleTestCases" value="false" />
46
 
                </TestCaseBuilder>
47
 
                <TestRunner>
48
 
                        <add key="ApartmentState" value="MTA" />
49
 
                        <add key="ThreadPriority" value="Normal" />
50
 
      <add key="DefaultLogThreshold" value="Info" />
51
 
                </TestRunner>
52
 
        </NUnit>
53
 
-->
54
 
  
55
 
   <!--
56
 
    The following <runtime> section allows running nunit tests under 
57
 
    .NET 1.0 by redirecting assemblies. The appliesTo attribute
58
 
    causes the section to be ignored except under .NET 1.0.
59
 
   --> 
60
 
        <runtime>
61
 
                <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
62
 
                                appliesTo="v1.0.3705">
63
 
                        <dependentAssembly>
64
 
                                <assemblyIdentity name="System" publicKeyToken="b77a5c561934e089" culture="" />
65
 
                                <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
66
 
                        </dependentAssembly>
67
 
                        <dependentAssembly>
68
 
                                <assemblyIdentity name="System.Data" publicKeyToken="b77a5c561934e089" culture="" />
69
 
                                <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
70
 
                        </dependentAssembly>
71
 
                        <dependentAssembly>
72
 
                                <assemblyIdentity name="System.Drawing" publicKeyToken="b03f5f7f11d50a3a" culture="" />
73
 
                                <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
74
 
                        </dependentAssembly>
75
 
                        <dependentAssembly>
76
 
                                <assemblyIdentity name="System.Windows.Forms" publicKeyToken="b77a5c561934e089" culture="" />
77
 
                                <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
78
 
                        </dependentAssembly>
79
 
                        <dependentAssembly>
80
 
                                <assemblyIdentity name="System.Xml" publicKeyToken="b77a5c561934e089" culture="" />
81
 
                                <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
82
 
                        </dependentAssembly>
83
 
                </assemblyBinding>
84
 
        </runtime>
85
 
</configuration>