~ubuntu-branches/debian/sid/nunit/sid

« back to all changes in this revision

Viewing changes to src/NUnitTestServer/nunit-agent-exe/App.v1.config

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2014-09-16 13:43:36 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20140916134336-kjxz48tty6lx2ja5
Tags: 2.6.3+dfsg-1
* [c7bd1b5] Imported Upstream version 2.6.3+dfsg
* [bcb4bf8] Move nunit-console-runner to GAC-installed libnunit2.6, 
  don't treat it as a private lib. This lib is signed, and treated 
  as a GAC lib by consumers such as MonoDevelop.
* [7f08e99] Bump version to 2.6.3 as required
* [84535eb] Refreshed patches
* [8479f61] Split package up into per-assembly packages. This makes 
  ABI tracking easier in the future, as we can meaningfully have GAC 
  policy for cases where ABI isn't truly bumped, and no policy for 
  cases where it is. For example, if nunit.framework bumps ABI but 
  nunit.core does not, previously we would need to rebuild everything 
  using NUnit, but under the new split packaging, that rebuild would 
  not be needed for apps only using nunit.core.
* [17a7dc7] Add missing nunit.mocks.dll to nunit.pc

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 1.1 build of nunit-agent only 
5
 
   runs under .NET 1.0 or 1.1. Note that 
6
 
   nunit-agent is normally run by the console 
7
 
   or gui runners and not independently. In 
8
 
   normal usage, the runner specifies which 
9
 
   runtime should be used.
10
 
 
11
 
   Do NOT add any supportedRuntime elements to
12
 
   this file, since they may prevent the runner
13
 
   from controlling the runtime that is used!
14
 
  -->
15
 
  <runtime>
16
 
    <!-- Look for addins in the addins directory for now -->
17
 
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
18
 
      <probing privatePath="lib;addins"/>
19
 
   </assemblyBinding>
20
 
 
21
 
    <!--
22
 
    The following <assemblyBinding> section allows running nunit under 
23
 
    .NET 1.0 by redirecting assemblies. The appliesTo attribute
24
 
    causes the section to be ignored except under .NET 1.0
25
 
    on a machine with only the .NET version 1.0 runtime installed.
26
 
    If application and its tests were built for .NET 1.1 you will
27
 
    also need to redirect system assemblies in the test config file,
28
 
    which controls loading of the tests.
29
 
   -->
30
 
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
31
 
                        appliesTo="v1.0.3705">
32
 
 
33
 
      <dependentAssembly> 
34
 
        <assemblyIdentity name="System" 
35
 
                          publicKeyToken="b77a5c561934e089" 
36
 
                          culture="neutral"/>
37
 
        <bindingRedirect  oldVersion="1.0.5000.0" 
38
 
                          newVersion="1.0.3300.0"/>
39
 
      </dependentAssembly>
40
 
 
41
 
      <dependentAssembly> 
42
 
        <assemblyIdentity name="System.Data" 
43
 
                          publicKeyToken="b77a5c561934e089" 
44
 
                          culture="neutral"/>
45
 
        <bindingRedirect  oldVersion="1.0.5000.0" 
46
 
                          newVersion="1.0.3300.0"/>
47
 
      </dependentAssembly>
48
 
 
49
 
      <dependentAssembly> 
50
 
        <assemblyIdentity name="System.Drawing" 
51
 
                          publicKeyToken="b03f5f7f11d50a3a" 
52
 
                          culture="neutral"/>
53
 
        <bindingRedirect  oldVersion="1.0.5000.0" 
54
 
                          newVersion="1.0.3300.0"/>
55
 
      </dependentAssembly>
56
 
 
57
 
      <dependentAssembly> 
58
 
        <assemblyIdentity name="System.Windows.Forms" 
59
 
                          publicKeyToken="b77a5c561934e089" 
60
 
                          culture="neutral"/>
61
 
        <bindingRedirect  oldVersion="1.0.5000.0" 
62
 
                          newVersion="1.0.3300.0"/>
63
 
      </dependentAssembly>
64
 
 
65
 
      <dependentAssembly> 
66
 
        <assemblyIdentity name="System.Xml" 
67
 
                          publicKeyToken="b77a5c561934e089" 
68
 
                          culture="neutral"/>
69
 
        <bindingRedirect  oldVersion="1.0.5000.0" 
70
 
                          newVersion="1.0.3300.0"/>
71
 
      </dependentAssembly>
72
 
 
73
 
    </assemblyBinding>
74
 
  
75
 
  </runtime>
76
 
  
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<configuration>
 
3
  <!--
 
4
   The .NET 1.1 build of nunit-agent only 
 
5
   runs under .NET 1.0 or 1.1. Note that 
 
6
   nunit-agent is normally run by the console 
 
7
   or gui runners and not independently. In 
 
8
   normal usage, the runner specifies which 
 
9
   runtime should be used.
 
10
 
 
11
   Do NOT add any supportedRuntime elements to
 
12
   this file, since they may prevent the runner
 
13
   from controlling the runtime that is used!
 
14
  -->
 
15
  <runtime>
 
16
    <!-- Look for addins in the addins directory for now -->
 
17
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
 
18
      <probing privatePath="lib;addins"/>
 
19
   </assemblyBinding>
 
20
 
 
21
    <!--
 
22
    The following <assemblyBinding> section allows running nunit under 
 
23
    .NET 1.0 by redirecting assemblies. The appliesTo attribute
 
24
    causes the section to be ignored except under .NET 1.0
 
25
    on a machine with only the .NET version 1.0 runtime installed.
 
26
    If application and its tests were built for .NET 1.1 you will
 
27
    also need to redirect system assemblies in the test config file,
 
28
    which controls loading of the tests.
 
29
   -->
 
30
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
 
31
                        appliesTo="v1.0.3705">
 
32
 
 
33
      <dependentAssembly> 
 
34
        <assemblyIdentity name="System" 
 
35
                          publicKeyToken="b77a5c561934e089" 
 
36
                          culture="neutral"/>
 
37
        <bindingRedirect  oldVersion="1.0.5000.0" 
 
38
                          newVersion="1.0.3300.0"/>
 
39
      </dependentAssembly>
 
40
 
 
41
      <dependentAssembly> 
 
42
        <assemblyIdentity name="System.Data" 
 
43
                          publicKeyToken="b77a5c561934e089" 
 
44
                          culture="neutral"/>
 
45
        <bindingRedirect  oldVersion="1.0.5000.0" 
 
46
                          newVersion="1.0.3300.0"/>
 
47
      </dependentAssembly>
 
48
 
 
49
      <dependentAssembly> 
 
50
        <assemblyIdentity name="System.Drawing" 
 
51
                          publicKeyToken="b03f5f7f11d50a3a" 
 
52
                          culture="neutral"/>
 
53
        <bindingRedirect  oldVersion="1.0.5000.0" 
 
54
                          newVersion="1.0.3300.0"/>
 
55
      </dependentAssembly>
 
56
 
 
57
      <dependentAssembly> 
 
58
        <assemblyIdentity name="System.Windows.Forms" 
 
59
                          publicKeyToken="b77a5c561934e089" 
 
60
                          culture="neutral"/>
 
61
        <bindingRedirect  oldVersion="1.0.5000.0" 
 
62
                          newVersion="1.0.3300.0"/>
 
63
      </dependentAssembly>
 
64
 
 
65
      <dependentAssembly> 
 
66
        <assemblyIdentity name="System.Xml" 
 
67
                          publicKeyToken="b77a5c561934e089" 
 
68
                          culture="neutral"/>
 
69
        <bindingRedirect  oldVersion="1.0.5000.0" 
 
70
                          newVersion="1.0.3300.0"/>
 
71
      </dependentAssembly>
 
72
 
 
73
    </assemblyBinding>
 
74
  
 
75
  </runtime>
 
76
  
77
77
</configuration>
 
 
b'\\ No newline at end of file'