main
 1<?xml version="1.0" encoding="utf-8" ?>
 2<configuration>
 3  <configSections>
 4    <section name="gallio" type="Gallio.Runtime.GallioSectionHandler, Gallio" />
 5  </configSections>
 6
 7  <runtime>
 8    <!-- Don't kill application on first uncaught exception.
 9         We don't want the test runner to terminate itself unexpectedly
10         without reporting the test failure associated with that exception. -->
11    <legacyUnhandledExceptionPolicy enabled="1" />
12  </runtime>
13
14  <system.runtime.remoting>
15    <customErrors mode="off"/>
16  </system.runtime.remoting>
17  
18  <startup>
19    <supportedRuntime version="v2.0.50727" />
20  </startup>
21  
22  <system.diagnostics>
23    <assert assertuienabled="false" />
24  </system.diagnostics>
25  
26  <gallio>
27    <runtime>
28    </runtime>
29  </gallio>
30</configuration>