/tools/nunit/nunit-gui.exe.config
Unknown | 109 lines | 90 code | 19 blank | 0 comment | 0 complexity | ef87c118077066fc46d9c545e6569fd3 MD5 | raw file
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 <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" 63 appliesTo="v1.0.3705"> 64 65 <dependentAssembly> 66 <assemblyIdentity name="System" 67 publicKeyToken="b77a5c561934e089" 68 culture="neutral"/> 69 <bindingRedirect oldVersion="1.0.5000.0" 70 newVersion="1.0.3300.0"/> 71 </dependentAssembly> 72 73 <dependentAssembly> 74 <assemblyIdentity name="System.Data" 75 publicKeyToken="b77a5c561934e089" 76 culture="neutral"/> 77 <bindingRedirect oldVersion="1.0.5000.0" 78 newVersion="1.0.3300.0"/> 79 </dependentAssembly> 80 81 <dependentAssembly> 82 <assemblyIdentity name="System.Drawing" 83 publicKeyToken="b03f5f7f11d50a3a" 84 culture="neutral"/> 85 <bindingRedirect oldVersion="1.0.5000.0" 86 newVersion="1.0.3300.0"/> 87 </dependentAssembly> 88 89 <dependentAssembly> 90 <assemblyIdentity name="System.Windows.Forms" 91 publicKeyToken="b77a5c561934e089" 92 culture="neutral"/> 93 <bindingRedirect oldVersion="1.0.5000.0" 94 newVersion="1.0.3300.0"/> 95 </dependentAssembly> 96 97 <dependentAssembly> 98 <assemblyIdentity name="System.Xml" 99 publicKeyToken="b77a5c561934e089" 100 culture="neutral"/> 101 <bindingRedirect oldVersion="1.0.5000.0" 102 newVersion="1.0.3300.0"/> 103 </dependentAssembly> 104 105 </assemblyBinding> 106 107 </runtime> 108 109</configuration>