/src/NUnit/nunit-gui-exe/App.config
Unknown | 67 lines | 56 code | 11 blank | 0 comment | 0 complexity | 1f01b616fb33940766c2eee9bae9c10f MD5 | raw file
1<?xml version="1.0"?> 2<configuration> 3 <!-- 4 Application settings for NUnit-gui.exe. Do NOT put settings 5 for use by your tests here. 6 --> 7 <appSettings> 8 <!-- 9 Uncomment to specify the url to be used for help. If not used, the 10 default value is something like 11 file://localhost/C:/Program Files/NUnit 2.2/doc/index.html 12 This setting is provided in case your default browser doesn't 13 support this format. 14 --> 15 <!-- <add key="helpUrl" value="http://www.nunit.org" /> --> 16 </appSettings> 17 18 <runtime> 19 <!-- We need this so test exceptions don't crash NUnit --> 20 <legacyUnhandledExceptionPolicy enabled="1"/> 21 22 <!-- Look for addins in the addins directory for now --> 23 <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> 24 <probing privatePath="lib;addins"/> 25 </assemblyBinding> 26 27 <!-- 28 The following <assemblyBinding> section allows running nunit under 29 .NET 1.0 by redirecting assemblies. The appliesTo attribute 30 causes the section to be ignored except under .NET 1.0 31 on a machine with only the .NET version 1.0 runtime installed. 32 If application and its tests were built for .NET 1.1 you will 33 also need to redirect system assemblies in the test config file, 34 which controls loading of the tests. 35 --> 36 <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" appliesTo="v1.0.3705"> 37 38 <dependentAssembly> 39 <assemblyIdentity name="System" publicKeyToken="b77a5c561934e089" culture="neutral"/> 40 <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0"/> 41 </dependentAssembly> 42 43 <dependentAssembly> 44 <assemblyIdentity name="System.Data" publicKeyToken="b77a5c561934e089" culture="neutral"/> 45 <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0"/> 46 </dependentAssembly> 47 48 <dependentAssembly> 49 <assemblyIdentity name="System.Drawing" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> 50 <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0"/> 51 </dependentAssembly> 52 53 <dependentAssembly> 54 <assemblyIdentity name="System.Windows.Forms" publicKeyToken="b77a5c561934e089" culture="neutral"/> 55 <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0"/> 56 </dependentAssembly> 57 58 <dependentAssembly> 59 <assemblyIdentity name="System.Xml" publicKeyToken="b77a5c561934e089" culture="neutral"/> 60 <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0"/> 61 </dependentAssembly> 62 63 </assemblyBinding> 64 65 </runtime> 66 67<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>