<?xml version="1.0" encoding="utf-8"?>
<configuration>
	<!--
   The .NET 2.0 build of the console runner only 
   runs under .NET 2.0 or higher. The setting
   useLegacyV2RuntimeActivationPolicy only applies 
   under .NET 4.0 and permits use of mixed mode 
   assemblies, which would otherwise not load 
   correctly.
  -->
	<startup useLegacyV2RuntimeActivationPolicy="true">
		<!-- NOTE: The order of the <supportedRuntime> tags matters! 
		The CLR reads <supportedRuntime> entries in the order they are listed, 
		and uses the first .NET Framework version listed that is present on the user's computer. -->
		<!-- <1ST> Allows usage of the NET Framework 4 and later versions if present on the user's computer. -->
		<supportedRuntime version="v4.0"/>
		<!-- <2ND> Allows usage of the .NET Frameworks 2.0, 3.0, and 3.5 if present on the user's computer 
			_AND_ NET Framework 4+ does not found at previous tag check. -->
		<supportedRuntime version="v2.0.50727"/>
	</startup>
	<runtime>
		<!-- Ensure that test exceptions don't crash NUnit -->
		<legacyUnhandledExceptionPolicy enabled="1"/>
		<!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
		<loadFromRemoteSources enabled="true"/>
		<!-- Look for addins in the addins directory for now -->
		<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
			<probing privatePath="lib;framework;addins"/>
		</assemblyBinding>
	</runtime>
</configuration>
