~ubuntu-branches/ubuntu/saucy/monodevelop/saucy

« back to all changes in this revision

Viewing changes to external/mdtestharness/nunit-agent.exe.config

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2012-06-22 20:35:35 UTC
  • mfrom: (1.8.6) (1.5.9 sid)
  • Revision ID: package-import@ubuntu.com-20120622203535-e0re5fku3i5ia6jm
Tags: 3.0.3.2+dfsg-1
* [3fd89ae] Imported Upstream version 3.0.3.2+dfsg
* [379a680] Remove old patches we haven't used for ages from git.
* [d71161d] Remove correct_paths_in_monodevelop-core-addins.pc.patch.
  Upstream claim to have fixed this by moving assembly install locations.
* [15dbfb9] Fix install location for MonoDevelop.Gettext.dll.config.
* [26eb434] Fix install location for MonoDevelop.SourceEditor2.dll.config.
* [4169974] Upstream commit 53282c9 which finally reconciles the 
  MonoDevelop.Gettext.dll install location with the 
  monodevelop-core-addins.pc location.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<configuration>
 
3
  <!--
 
4
   The .NET 2.0 build of nunit-agent only 
 
5
   runs under .NET 2.0 or higher. The setting
 
6
   useLegacyV2RuntimeActivationPolicy only applies 
 
7
   under .NET 4.0 and permits use of mixed mode 
 
8
   assemblies, which would otherwise not load 
 
9
   correctly. 
 
10
  -->
 
11
  <startup useLegacyV2RuntimeActivationPolicy="true">
 
12
    <!--
 
13
     Nunit-agent is normally run by the console or gui
 
14
     runners and not independently. In normal usage, 
 
15
     the runner specifies which runtime should be used.
 
16
     
 
17
     Do NOT add any supportedRuntime elements here, 
 
18
     since they may prevent the runner from controlling 
 
19
     the runtime that is used!
 
20
    -->
 
21
  </startup>
 
22
 
 
23
  <runtime>
 
24
    <!-- Ensure that test exceptions don't crash NUnit -->
 
25
    <legacyUnhandledExceptionPolicy enabled="1" />
 
26
 
 
27
    <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
 
28
    <loadFromRemoteSources enabled="true" />
 
29
 
 
30
    <!-- Look for addins in the addins directory for now -->
 
31
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
 
32
      <probing privatePath="lib;addins"/>
 
33
   </assemblyBinding>
 
34
 
 
35
  </runtime>
 
36
  
 
37
</configuration>
 
 
b'\\ No newline at end of file'