1 | <?xml version="1.0" encoding="Windows-1252"?>
|
---|
2 | <configuration>
|
---|
3 |
|
---|
4 | <!--
|
---|
5 | Application settings for NUnit-gui.exe. Do NOT put settings
|
---|
6 | for use by your tests here.
|
---|
7 | -->
|
---|
8 | <appSettings>
|
---|
9 |
|
---|
10 | <!--
|
---|
11 | Specify the location to be used by .NET for the cache
|
---|
12 | -->
|
---|
13 | <add key="shadowfiles.path" value="%temp%\nunit20\ShadowCopyCache" />
|
---|
14 |
|
---|
15 | <!--
|
---|
16 | Uncomment to specify the url to be used for help. If not used, the
|
---|
17 | default value is something like
|
---|
18 | file://localhost/C:/Program Files/NUnit 2.2/doc/index.html
|
---|
19 | This setting is provided in case your default browser doesn't
|
---|
20 | support this format.
|
---|
21 | -->
|
---|
22 | <!-- <add key="helpUrl" value="http://www.nunit.org" /> -->
|
---|
23 |
|
---|
24 | </appSettings>
|
---|
25 |
|
---|
26 |
|
---|
27 | <!--
|
---|
28 | The startup section may be used to specify the runtime versions
|
---|
29 | supported in the order that they will be used if more than one
|
---|
30 | is present. As supplied, this section is commented out, which
|
---|
31 | causes nunit-console to use the version of the framework with
|
---|
32 | which it was built.
|
---|
33 |
|
---|
34 | Since .NET 1.0 does not recognize the <supportedRuntime> elements,
|
---|
35 | a <requiredRuntime> element is used in case it is the only version
|
---|
36 | of the framework that is installed.
|
---|
37 | -->
|
---|
38 | <!--
|
---|
39 | <startup>
|
---|
40 | <supportedRuntime version="v2.0.50727" />
|
---|
41 | <supportedRuntime version="v2.0.50215" />
|
---|
42 | <supportedRuntime version="v2.0.40607" />
|
---|
43 | <supportedRuntime version="v1.1.4322" />
|
---|
44 | <supportedRuntime version="v1.0.3705" />
|
---|
45 |
|
---|
46 | <requiredRuntime version="v1.0.3705" />
|
---|
47 |
|
---|
48 | </startup>
|
---|
49 | -->
|
---|
50 | <!--
|
---|
51 | The following <runtime> section allows running nunit under
|
---|
52 | .NET 1.0 by redirecting assemblies. The appliesTo attribute
|
---|
53 | causes the section to be ignored except under .NET 1.0
|
---|
54 | on a machine with only the .NET version 1.0 runtime installed.
|
---|
55 | If application and its tests were built for .NET 1.1 you will
|
---|
56 | also need to redirect system assemblies in the test config file
|
---|
57 | just as we do for nunit.tests.dll.
|
---|
58 | -->
|
---|
59 |
|
---|
60 | <runtime>
|
---|
61 |
|
---|
62 | <legacyUnhandledExceptionPolicy enabled="1" />
|
---|
63 |
|
---|
64 | <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
---|
65 | <probing privatePath="addins"/>
|
---|
66 | </assemblyBinding>
|
---|
67 |
|
---|
68 | <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
|
---|
69 | appliesTo="v1.0.3705">
|
---|
70 |
|
---|
71 | <dependentAssembly>
|
---|
72 | <assemblyIdentity name="System"
|
---|
73 | publicKeyToken="b77a5c561934e089"
|
---|
74 | culture="neutral"/>
|
---|
75 | <bindingRedirect oldVersion="1.0.5000.0"
|
---|
76 | newVersion="1.0.3300.0"/>
|
---|
77 | </dependentAssembly>
|
---|
78 |
|
---|
79 | <dependentAssembly>
|
---|
80 | <assemblyIdentity name="System.Data"
|
---|
81 | publicKeyToken="b77a5c561934e089"
|
---|
82 | culture="neutral"/>
|
---|
83 | <bindingRedirect oldVersion="1.0.5000.0"
|
---|
84 | newVersion="1.0.3300.0"/>
|
---|
85 | </dependentAssembly>
|
---|
86 |
|
---|
87 | <dependentAssembly>
|
---|
88 | <assemblyIdentity name="System.Drawing"
|
---|
89 | publicKeyToken="b03f5f7f11d50a3a"
|
---|
90 | culture="neutral"/>
|
---|
91 | <bindingRedirect oldVersion="1.0.5000.0"
|
---|
92 | newVersion="1.0.3300.0"/>
|
---|
93 | </dependentAssembly>
|
---|
94 |
|
---|
95 | <dependentAssembly>
|
---|
96 | <assemblyIdentity name="System.Windows.Forms"
|
---|
97 | publicKeyToken="b77a5c561934e089"
|
---|
98 | culture="neutral"/>
|
---|
99 | <bindingRedirect oldVersion="1.0.5000.0"
|
---|
100 | newVersion="1.0.3300.0"/>
|
---|
101 | </dependentAssembly>
|
---|
102 |
|
---|
103 | <dependentAssembly>
|
---|
104 | <assemblyIdentity name="System.Xml"
|
---|
105 | publicKeyToken="b77a5c561934e089"
|
---|
106 | culture="neutral"/>
|
---|
107 | <bindingRedirect oldVersion="1.0.5000.0"
|
---|
108 | newVersion="1.0.3300.0"/>
|
---|
109 | </dependentAssembly>
|
---|
110 |
|
---|
111 | </assemblyBinding>
|
---|
112 |
|
---|
113 | </runtime>
|
---|
114 |
|
---|
115 | </configuration>
|
---|