update to nunit 2.5.7.10213
initial pass at compilation using .net 4.0 (not just side-by-side support)
This commit is contained in:
58
Spring.build
58
Spring.build
@@ -8,7 +8,7 @@ Main build targets:
|
||||
builds debug builds for all projects for all available target platforms
|
||||
|
||||
"compile-build-<framework id>":
|
||||
builds all projects for a specific platform, e.g. compile-build-net-2.0 for net-2.0
|
||||
builds all projects for a specific platform, e.g. compile-build-2.0 for net-2.0
|
||||
|
||||
"doc":
|
||||
builds the reference and sdk documentation
|
||||
@@ -317,7 +317,9 @@ Commandline Examples:
|
||||
<call target="compile-build-2.0"/>
|
||||
<call target="compile-build-3.0"/>
|
||||
<call target="compile-build-3.5"/>
|
||||
|
||||
<!--
|
||||
<call target="compile-build-4.0"/>
|
||||
-->
|
||||
<!-- Ignore Compact Framework 1.0 for now -->
|
||||
<!-- call target="compile-build-netcf-1.0"/ -->
|
||||
<call target="compile-build-mono-2.0"/>
|
||||
@@ -394,6 +396,26 @@ Commandline Examples:
|
||||
</target>
|
||||
|
||||
|
||||
<target name="compile-build-4.0" description="Builds for .NET 4.0 if available">
|
||||
|
||||
<if test="${net-4.0.installed}">
|
||||
<call target="compile-net-4.0"/>
|
||||
</if>
|
||||
|
||||
<if test="${not net-4.0.installed}">
|
||||
<if test="${property::exists('project.build.package') and project.build.package}">
|
||||
.NET 4.0 Build Skipped for Package
|
||||
<fail message="The .NET Framework 4.0 is not available."/>
|
||||
<echo message="The .NET Framework 4.0 is not available. Build skipped during package."/>
|
||||
</if>
|
||||
<if test="${not(property::exists('project.build.package') and project.build.package)}">
|
||||
<echo message="The .NET Framework 4.0 is not available. Build skipped."/>
|
||||
</if>
|
||||
</if>
|
||||
</target>
|
||||
|
||||
|
||||
|
||||
<!-- Targets for other .NET frameworks -->
|
||||
|
||||
<target name="compile-build-netcf-1.0" description="Builds for .NET 1.0 Compact Framework if available">
|
||||
@@ -449,6 +471,7 @@ Commandline Examples:
|
||||
<nant buildfile="src/Spring/Spring.Data.NHibernate20/Spring.Data.NHibernate20.build" target="build" if="${build-data and (nant.settings.currentframework == 'net-2.0' or nant.settings.currentframework == 'mono-2.0')}"/>
|
||||
<nant buildfile="src/Spring/Spring.Data.NHibernate21/Spring.Data.NHibernate21.build" target="build" if="${build-data and (nant.settings.currentframework == 'net-2.0' or nant.settings.currentframework == 'mono-2.0')}"/>
|
||||
<nant buildfile="src/Spring/Spring.Data.NHibernate30/Spring.Data.NHibernate30.build" target="build" if="${build-data and (nant.settings.currentframework == 'net-3.5' or nant.settings.currentframework == 'mono-2.0')}"/>
|
||||
<nant buildfile="src/Spring/Spring.Data.NHibernate30/Spring.Data.NHibernate30.build" target="build" if="${build-data and (nant.settings.currentframework == 'net-4.0' or nant.settings.currentframework == 'mono-2.0')}"/>
|
||||
<nant buildfile="src/Spring/Spring.Services/Spring.Services.build" target="build" if="${build-services and not net-3.5}"/>
|
||||
<nant buildfile="src/Spring/Spring.Testing.NUnit/Spring.Testing.NUnit.build" target="build" if="${build-testing-nunit}"/>
|
||||
<nant buildfile="src/Spring/Spring.Testing.Microsoft/Spring.Testing.Microsoft.build" target="build" if="${build-testing-microsoft and (nant.settings.currentframework == 'net-2.0')}"/>
|
||||
@@ -555,6 +578,19 @@ Commandline Examples:
|
||||
<call target="compile-test" />
|
||||
</target>
|
||||
|
||||
<target name="compile-net-4.0" description="Builds .NET Framework 4.0 version"
|
||||
depends="set-net-4.0-runtime-configuration, check-spring-basedir, clean-current-bin-dir">
|
||||
<call target="copykeys" if="${project.build.sign}"/>
|
||||
<call target="common.generate-assemblyinfo"/>
|
||||
<property name="build-ems" value="true" overwrite="true" />
|
||||
<property name="build-nms" value="true" overwrite="true" />
|
||||
<property name="build-quartz" value="true" overwrite="true" />
|
||||
<property name="build-msmq" value="true" overwrite="true" />
|
||||
<property name="build-msmq-tests" value="true" overwrite="true" />
|
||||
<property name="build-velocity" value="true" overwrite="true" />
|
||||
<call target="compile-test" />
|
||||
</target>
|
||||
|
||||
<target name="compile-mono-2.0" description="Builds MONO Framework 2.0 version"
|
||||
depends="set-mono-2.0-runtime-configuration, check-spring-basedir, clean-current-bin-dir">
|
||||
<call target="copykeys" if="${project.build.sign}"/>
|
||||
@@ -683,6 +719,24 @@ Commandline Examples:
|
||||
</if>
|
||||
</target>
|
||||
|
||||
<target name="build-4.0">
|
||||
<call target="set-build-namespaces-release"/>
|
||||
<echo message="------------------------"/>
|
||||
<echo message="Building .NET 4.0 DEBUG "/>
|
||||
<echo message="------------------------"/>
|
||||
<call target="set-debug-build-configuration"/>
|
||||
<call target="compile-build-4.0"/>
|
||||
|
||||
|
||||
<if test="${property::exists('project.build.package') and project.build.package}">
|
||||
<echo message="--------------------------"/>
|
||||
<echo message="Building .NET 4.0 RELEASE "/>
|
||||
<echo message="--------------------------"/>
|
||||
<call target="set-release-build-configuration"/>
|
||||
<call target="compile-build-4.0"/>
|
||||
</if>
|
||||
</target>
|
||||
|
||||
<target name="build-mono-2.0">
|
||||
|
||||
<if test="${property::exists('project.build.package') and project.build.package}">
|
||||
|
||||
@@ -17,29 +17,32 @@
|
||||
value="${spring.basedir}/bin/${framework::get-family(framework::get-target-framework())}/${framework::get-version(framework::get-target-framework())}/${current.build.config}"
|
||||
dynamic="true"/>
|
||||
|
||||
<property name="net-3.0" value="false"/>
|
||||
<property name="registry.net-3.0.installed" value="0" overwrite="false"/>
|
||||
|
||||
<readregistry property="registry.net-3.0.installed"
|
||||
key="SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.0\Install"
|
||||
hive="LocalMachine"
|
||||
failonerror="false" />
|
||||
<!-- detect if .net 3.0 is installed -->
|
||||
<property name="net-3.0" value="false"/>
|
||||
<property name="registry.net-3.0.installed" value="0" overwrite="false"/>
|
||||
|
||||
<readregistry property="registry.dotnet.v3.0.Installed"
|
||||
key="SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.0\Setup\InstallSuccess"
|
||||
hive="LocalMachine"
|
||||
unless="${property::exists('registry.net-3.0.installed')}"
|
||||
failonerror="false" />
|
||||
<readregistry property="registry.net-3.0.installed"
|
||||
key="SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.0\Install"
|
||||
hive="LocalMachine"
|
||||
failonerror="false" />
|
||||
|
||||
<property name="net-3.0.installed" value="${registry.net-3.0.installed == '1'}" />
|
||||
<readregistry property="registry.dotnet.v3.0.Installed"
|
||||
key="SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.0\Setup\InstallSuccess"
|
||||
hive="LocalMachine"
|
||||
unless="${property::exists('registry.net-3.0.installed')}"
|
||||
failonerror="false" />
|
||||
|
||||
<if test="${net-3.0.installed}">
|
||||
<readregistry property="net-3.0.ReferenceInstallPath"
|
||||
key="SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.0\Setup\Windows Communication Foundation\ReferenceInstallPath"
|
||||
hive="LocalMachine"
|
||||
if="${net-3.0.installed}" />
|
||||
</if>
|
||||
<property name="net-3.0.installed" value="${registry.net-3.0.installed == '1'}" />
|
||||
|
||||
<if test="${net-3.0.installed}">
|
||||
<readregistry property="net-3.0.ReferenceInstallPath"
|
||||
key="SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.0\Setup\Windows Communication Foundation\ReferenceInstallPath"
|
||||
hive="LocalMachine"
|
||||
if="${net-3.0.installed}" />
|
||||
</if>
|
||||
|
||||
<!-- detect if .net 3.5 is installed -->
|
||||
<property name="net-3.5" value="false"/>
|
||||
<property name="registry.net-3.5.installed" value="0" overwrite="false"/>
|
||||
|
||||
@@ -50,6 +53,19 @@
|
||||
|
||||
<property name="net-3.5.installed" value="${registry.net-3.5.installed == '1'}" />
|
||||
|
||||
<!-- detect if .net 4.0 is installed -->
|
||||
<property name="net-4.0" value="false"/>
|
||||
<property name="registry.net-4.0.installed" value="0" overwrite="false"/>
|
||||
|
||||
<readregistry property="registry.net-4.0.installed"
|
||||
key="SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full\Install"
|
||||
hive="LocalMachine"
|
||||
failonerror="false" />
|
||||
|
||||
<property name="net-4.0.installed" value="${registry.net-4.0.installed == '1'}" />
|
||||
|
||||
|
||||
|
||||
<readregistry property="vs-net90.dir" key="SOFTWARE\Microsoft\VisualStudio\9.0\InstallDir" hive="LocalMachine" failonerror="false"/>
|
||||
|
||||
<!-- default location of mstest executable and reference assemblies -->
|
||||
@@ -213,7 +229,7 @@
|
||||
</imports>
|
||||
|
||||
<code>
|
||||
<!-- format for assembly revision is RRXXX where RR = framework number (1.0=10; 1.1=11; 2.0=20, 3.0=30, 3.5=35, etc.) and
|
||||
<!-- format for assembly revision is RRXXX where RR = framework number (1.0=10; 1.1=11; 2.0=20, 3.0=30, 3.5=35, 4.0=40 etc.) and
|
||||
XXX is the number of days from the year the project 'started', property project.year. -->
|
||||
<![CDATA[
|
||||
public static void ScriptMain(Project project) {
|
||||
@@ -427,6 +443,28 @@
|
||||
<property name="current.sdkdoc.debug" value="${sdkdoc.debug}" dynamic="true"/>
|
||||
<property name="nowarn.numbers.test" value="${nowarn.numbers.test.default},1701"/>
|
||||
</target>
|
||||
|
||||
<target name="set-net-4.0-runtime-configuration"
|
||||
depends="check-bin-dir, check-sdkdoc-dir, check-sdkdoc-debug, check-current-build-config, check-build-debug, check-build-defines">
|
||||
<property name="nant.settings.currentframework" value="net-4.0"/>
|
||||
<property name="nant.settings.currentframework.number" value="4.0"/>
|
||||
<!-- revision number used when generating assembly info -->
|
||||
<property name="nant.settings.currentframework.revisionnumber" value="40"/>
|
||||
<property name="net-2.0" value="true"/>
|
||||
<property name="net-3.0" value="true"/>
|
||||
<property name="net-3.5" value="true"/>
|
||||
<property name="net-4.0" value="true"/>
|
||||
<property name="current.build.debug" value="${build.debug}" dynamic="true"/>
|
||||
<property name="current.build.defines.csc" value="${build.defines.csc},NET,NET_2_0,NET_3_0,NET_3_5,NET_4_0" dynamic="true"/>
|
||||
<property name="current.build.defines.cl" value="${build.defines.cl} /D NET /D NET_2_0 /D NET_3_0 /D NET_3_5 /D NET_4_0" dynamic="true"/>
|
||||
<property name="current.bin.dir"
|
||||
value="${bin.dir}/${framework::get-family(framework::get-target-framework())}/4.0/${current.build.config}"/>
|
||||
<property name="current.sdkdoc.dir"
|
||||
value="${sdkdoc.dir}/${framework::get-family(framework::get-target-framework())}/4.0"/>
|
||||
<property name="current.sdkdoc.debug" value="${sdkdoc.debug}" dynamic="true"/>
|
||||
<property name="nowarn.numbers.test" value="${nowarn.numbers.test.default},1701"/>
|
||||
</target>
|
||||
|
||||
<target name="set-netcf-1.0-runtime-configuration"
|
||||
depends="check-bin-dir, check-sdkdoc-dir, check-sdkdoc-debug, check-current-build-config, check-build-debug, check-build-defines">
|
||||
<property name="nant.settings.currentframework" value="netcf-1.0"/>
|
||||
|
||||
18
build-support/tools/nunit/net-1.1/agent.log.conf
Normal file
18
build-support/tools/nunit/net-1.1/agent.log.conf
Normal file
@@ -0,0 +1,18 @@
|
||||
<log4net>
|
||||
<!-- A1 is set to be a ConsoleAppender -->
|
||||
<appender name="A1" type="log4net.Appender.ConsoleAppender">
|
||||
|
||||
<!-- A1 uses PatternLayout -->
|
||||
<layout type="log4net.Layout.PatternLayout">
|
||||
<!-- Print the date in ISO 8601 format -->
|
||||
<conversionPattern value="%-5level %logger - %message%newline" />
|
||||
</layout>
|
||||
</appender>
|
||||
|
||||
<!-- Set root logger level to DEBUG and its only appender to A1 -->
|
||||
<root>
|
||||
<level value="DEBUG" />
|
||||
<appender-ref ref="A1" />
|
||||
</root>
|
||||
|
||||
</log4net>
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
18
build-support/tools/nunit/net-1.1/launcher.log.conf
Normal file
18
build-support/tools/nunit/net-1.1/launcher.log.conf
Normal file
@@ -0,0 +1,18 @@
|
||||
<log4net>
|
||||
<!-- A1 is set to be a ConsoleAppender -->
|
||||
<appender name="A1" type="log4net.Appender.ConsoleAppender">
|
||||
|
||||
<!-- A1 uses PatternLayout -->
|
||||
<layout type="log4net.Layout.PatternLayout">
|
||||
<!-- Print the date in ISO 8601 format -->
|
||||
<conversionPattern value="%-5level %logger - %message%newline" />
|
||||
</layout>
|
||||
</appender>
|
||||
|
||||
<!-- Set root logger level to DEBUG and its only appender to A1 -->
|
||||
<root>
|
||||
<level value="DEBUG" />
|
||||
<appender-ref ref="A1" />
|
||||
</root>
|
||||
|
||||
</log4net>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,87 +1,76 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<configuration>
|
||||
<!--
|
||||
Application settings for nunit-agent.exe. Do NOT put settings
|
||||
for use by your tests here.
|
||||
-->
|
||||
<appSettings>
|
||||
<!--
|
||||
Specify the location to be used by .NET for the cache
|
||||
-->
|
||||
<add key="shadowfiles.path" value="%temp%\nunit20\ShadowCopyCache" />
|
||||
</appSettings>
|
||||
|
||||
<!-- Set the level for tracing NUnit itself -->
|
||||
<!-- 0=Off 1=Error 2=Warning 3=Info 4=Debug -->
|
||||
<system.diagnostics>
|
||||
<switches>
|
||||
<add name="NTrace" value="0" />
|
||||
</switches>
|
||||
</system.diagnostics>
|
||||
|
||||
<runtime>
|
||||
<!-- We need this so test exceptions don't crash NUnit -->
|
||||
<legacyUnhandledExceptionPolicy enabled="1" />
|
||||
|
||||
<!-- Look for addins in the addins directory for now -->
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<probing privatePath="lib;addins"/>
|
||||
</assemblyBinding>
|
||||
|
||||
<!--
|
||||
The following <assemblyBinding> section allows running nunit under
|
||||
.NET 1.0 by redirecting assemblies. The appliesTo attribute
|
||||
causes the section to be ignored except under .NET 1.0
|
||||
on a machine with only the .NET version 1.0 runtime installed.
|
||||
If application and its tests were built for .NET 1.1 you will
|
||||
also need to redirect system assemblies in the test config file,
|
||||
which controls loading of the tests.
|
||||
-->
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
|
||||
appliesTo="v1.0.3705">
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System"
|
||||
publicKeyToken="b77a5c561934e089"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Data"
|
||||
publicKeyToken="b77a5c561934e089"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Drawing"
|
||||
publicKeyToken="b03f5f7f11d50a3a"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Windows.Forms"
|
||||
publicKeyToken="b77a5c561934e089"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Xml"
|
||||
publicKeyToken="b77a5c561934e089"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
</assemblyBinding>
|
||||
|
||||
</runtime>
|
||||
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<!-- Set the level for tracing NUnit itself -->
|
||||
<!-- 0=Off 1=Error 2=Warning 3=Info 4=Debug -->
|
||||
<system.diagnostics>
|
||||
<switches>
|
||||
<add name="NTrace" value="0" />
|
||||
</switches>
|
||||
</system.diagnostics>
|
||||
|
||||
<runtime>
|
||||
<!-- We need this so test exceptions don't crash NUnit -->
|
||||
<legacyUnhandledExceptionPolicy enabled="1" />
|
||||
|
||||
<!-- Look for addins in the addins directory for now -->
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<probing privatePath="lib;addins"/>
|
||||
</assemblyBinding>
|
||||
|
||||
<!--
|
||||
The following <assemblyBinding> section allows running nunit under
|
||||
.NET 1.0 by redirecting assemblies. The appliesTo attribute
|
||||
causes the section to be ignored except under .NET 1.0
|
||||
on a machine with only the .NET version 1.0 runtime installed.
|
||||
If application and its tests were built for .NET 1.1 you will
|
||||
also need to redirect system assemblies in the test config file,
|
||||
which controls loading of the tests.
|
||||
-->
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
|
||||
appliesTo="v1.0.3705">
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System"
|
||||
publicKeyToken="b77a5c561934e089"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Data"
|
||||
publicKeyToken="b77a5c561934e089"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Drawing"
|
||||
publicKeyToken="b03f5f7f11d50a3a"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Windows.Forms"
|
||||
publicKeyToken="b77a5c561934e089"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Xml"
|
||||
publicKeyToken="b77a5c561934e089"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
</assemblyBinding>
|
||||
|
||||
</runtime>
|
||||
|
||||
</configuration>
|
||||
Binary file not shown.
@@ -1,87 +1,76 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<configuration>
|
||||
<!--
|
||||
Application settings for NUnit-console.exe. Do NOT put settings
|
||||
for use by your tests here.
|
||||
-->
|
||||
<appSettings>
|
||||
<!--
|
||||
Specify the location to be used by .NET for the cache
|
||||
-->
|
||||
<add key="shadowfiles.path" value="%temp%\nunit20\ShadowCopyCache" />
|
||||
</appSettings>
|
||||
|
||||
<!-- Set the level for tracing NUnit itself -->
|
||||
<!-- 0=Off 1=Error 2=Warning 3=Info 4=Debug -->
|
||||
<system.diagnostics>
|
||||
<switches>
|
||||
<add name="NTrace" value="0" />
|
||||
</switches>
|
||||
</system.diagnostics>
|
||||
|
||||
<runtime>
|
||||
<!-- We need this so test exceptions don't crash NUnit -->
|
||||
<legacyUnhandledExceptionPolicy enabled="1" />
|
||||
|
||||
<!-- Look for addins in the addins directory for now -->
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<probing privatePath="lib;addins"/>
|
||||
</assemblyBinding>
|
||||
|
||||
<!--
|
||||
The following <assemblyBinding> section allows running nunit under
|
||||
.NET 1.0 by redirecting assemblies. The appliesTo attribute
|
||||
causes the section to be ignored except under .NET 1.0
|
||||
on a machine with only the .NET version 1.0 runtime installed.
|
||||
If application and its tests were built for .NET 1.1 you will
|
||||
also need to redirect system assemblies in the test config file,
|
||||
which controls loading of the tests.
|
||||
-->
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
|
||||
appliesTo="v1.0.3705">
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System"
|
||||
publicKeyToken="b77a5c561934e089"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Data"
|
||||
publicKeyToken="b77a5c561934e089"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Drawing"
|
||||
publicKeyToken="b03f5f7f11d50a3a"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Windows.Forms"
|
||||
publicKeyToken="b77a5c561934e089"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Xml"
|
||||
publicKeyToken="b77a5c561934e089"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
</assemblyBinding>
|
||||
|
||||
</runtime>
|
||||
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<!-- Set the level for tracing NUnit itself -->
|
||||
<!-- 0=Off 1=Error 2=Warning 3=Info 4=Debug -->
|
||||
<system.diagnostics>
|
||||
<switches>
|
||||
<add name="NTrace" value="0" />
|
||||
</switches>
|
||||
</system.diagnostics>
|
||||
|
||||
<runtime>
|
||||
<!-- We need this so test exceptions don't crash NUnit -->
|
||||
<legacyUnhandledExceptionPolicy enabled="1" />
|
||||
|
||||
<!-- Look for addins in the addins directory for now -->
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<probing privatePath="lib;addins"/>
|
||||
</assemblyBinding>
|
||||
|
||||
<!--
|
||||
The following <assemblyBinding> section allows running nunit under
|
||||
.NET 1.0 by redirecting assemblies. The appliesTo attribute
|
||||
causes the section to be ignored except under .NET 1.0
|
||||
on a machine with only the .NET version 1.0 runtime installed.
|
||||
If application and its tests were built for .NET 1.1 you will
|
||||
also need to redirect system assemblies in the test config file,
|
||||
which controls loading of the tests.
|
||||
-->
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
|
||||
appliesTo="v1.0.3705">
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System"
|
||||
publicKeyToken="b77a5c561934e089"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Data"
|
||||
publicKeyToken="b77a5c561934e089"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Drawing"
|
||||
publicKeyToken="b03f5f7f11d50a3a"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Windows.Forms"
|
||||
publicKeyToken="b77a5c561934e089"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Xml"
|
||||
publicKeyToken="b77a5c561934e089"
|
||||
culture="neutral"/>
|
||||
<bindingRedirect oldVersion="1.0.5000.0"
|
||||
newVersion="1.0.3300.0"/>
|
||||
</dependentAssembly>
|
||||
|
||||
</assemblyBinding>
|
||||
|
||||
</runtime>
|
||||
|
||||
</configuration>
|
||||
BIN
build-support/tools/nunit/net-1.1/nunit.framework.dll
Normal file
BIN
build-support/tools/nunit/net-1.1/nunit.framework.dll
Normal file
Binary file not shown.
Binary file not shown.
@@ -1,15 +1,5 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<configuration>
|
||||
<!--
|
||||
Application settings for pnunit-agent.exe. Do NOT put settings
|
||||
for use by your tests here.
|
||||
-->
|
||||
<appSettings>
|
||||
<!--
|
||||
Specify the location to be used by .NET for the cache
|
||||
-->
|
||||
<add key="shadowfiles.path" value="%temp%\nunit20\ShadowCopyCache" />
|
||||
</appSettings>
|
||||
|
||||
<!-- Set the level for tracing NUnit itself -->
|
||||
<!-- 0=Off 1=Error 2=Warning 3=Info 4=Debug -->
|
||||
|
||||
Binary file not shown.
@@ -1,15 +1,5 @@
|
||||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<configuration>
|
||||
<!--
|
||||
Application settings for pnunit-launch.exe. Do NOT put settings
|
||||
for use by your tests here.
|
||||
-->
|
||||
<appSettings>
|
||||
<!--
|
||||
Specify the location to be used by .NET for the cache
|
||||
-->
|
||||
<add key="shadowfiles.path" value="%temp%\nunit20\ShadowCopyCache" />
|
||||
</appSettings>
|
||||
|
||||
<!-- Set the level for tracing NUnit itself -->
|
||||
<!-- 0=Off 1=Error 2=Warning 3=Info 4=Debug -->
|
||||
|
||||
BIN
build-support/tools/nunit/net-1.1/pnunit.framework.dll
Normal file
BIN
build-support/tools/nunit/net-1.1/pnunit.framework.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-1.1/pnunit.tests.dll
Normal file
BIN
build-support/tools/nunit/net-1.1/pnunit.tests.dll
Normal file
Binary file not shown.
2
build-support/tools/nunit/net-1.1/runpnunit.bat
Normal file
2
build-support/tools/nunit/net-1.1/runpnunit.bat
Normal file
@@ -0,0 +1,2 @@
|
||||
start pnunit-agent agent.conf
|
||||
pnunit-launcher test.conf
|
||||
BIN
build-support/tools/nunit/net-1.1/tests/loadtest-assembly.dll
Normal file
BIN
build-support/tools/nunit/net-1.1/tests/loadtest-assembly.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-1.1/tests/mock-assembly.dll
Normal file
BIN
build-support/tools/nunit/net-1.1/tests/mock-assembly.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-1.1/tests/nonamespace-assembly.dll
Normal file
BIN
build-support/tools/nunit/net-1.1/tests/nonamespace-assembly.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-1.1/tests/nunit-console.tests.dll
Normal file
BIN
build-support/tools/nunit/net-1.1/tests/nunit-console.tests.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-1.1/tests/nunit.core.tests.dll
Normal file
BIN
build-support/tools/nunit/net-1.1/tests/nunit.core.tests.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-1.1/tests/nunit.fixtures.tests.dll
Normal file
BIN
build-support/tools/nunit/net-1.1/tests/nunit.fixtures.tests.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-1.1/tests/nunit.framework.dll
Normal file
BIN
build-support/tools/nunit/net-1.1/tests/nunit.framework.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
build-support/tools/nunit/net-1.1/tests/nunit.mocks.tests.dll
Normal file
BIN
build-support/tools/nunit/net-1.1/tests/nunit.mocks.tests.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-1.1/tests/nunit.util.tests.dll
Normal file
BIN
build-support/tools/nunit/net-1.1/tests/nunit.util.tests.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-1.1/tests/test-assembly.dll
Normal file
BIN
build-support/tools/nunit/net-1.1/tests/test-assembly.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-1.1/tests/test-utilities.dll
Normal file
BIN
build-support/tools/nunit/net-1.1/tests/test-utilities.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-1.1/tests/timing-tests.dll
Normal file
BIN
build-support/tools/nunit/net-1.1/tests/timing-tests.dll
Normal file
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
build-support/tools/nunit/net-2.0/pnunit.framework.dll
Normal file
BIN
build-support/tools/nunit/net-2.0/pnunit.framework.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-2.0/pnunit.tests.dll
Normal file
BIN
build-support/tools/nunit/net-2.0/pnunit.tests.dll
Normal file
Binary file not shown.
2
build-support/tools/nunit/net-2.0/runpnunit.bat
Normal file
2
build-support/tools/nunit/net-2.0/runpnunit.bat
Normal file
@@ -0,0 +1,2 @@
|
||||
start pnunit-agent agent.conf
|
||||
pnunit-launcher test.conf
|
||||
BIN
build-support/tools/nunit/net-2.0/tests/loadtest-assembly.dll
Normal file
BIN
build-support/tools/nunit/net-2.0/tests/loadtest-assembly.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-2.0/tests/mock-assembly.dll
Normal file
BIN
build-support/tools/nunit/net-2.0/tests/mock-assembly.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-2.0/tests/nonamespace-assembly.dll
Normal file
BIN
build-support/tools/nunit/net-2.0/tests/nonamespace-assembly.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-2.0/tests/nunit-console.tests.dll
Normal file
BIN
build-support/tools/nunit/net-2.0/tests/nunit-console.tests.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-2.0/tests/nunit-gui.tests.dll
Normal file
BIN
build-support/tools/nunit/net-2.0/tests/nunit-gui.tests.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-2.0/tests/nunit.core.tests.dll
Normal file
BIN
build-support/tools/nunit/net-2.0/tests/nunit.core.tests.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-2.0/tests/nunit.fixtures.tests.dll
Normal file
BIN
build-support/tools/nunit/net-2.0/tests/nunit.fixtures.tests.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-2.0/tests/nunit.framework.dll
Normal file
BIN
build-support/tools/nunit/net-2.0/tests/nunit.framework.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
build-support/tools/nunit/net-2.0/tests/nunit.mocks.tests.dll
Normal file
BIN
build-support/tools/nunit/net-2.0/tests/nunit.mocks.tests.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
build-support/tools/nunit/net-2.0/tests/nunit.uikit.tests.dll
Normal file
BIN
build-support/tools/nunit/net-2.0/tests/nunit.uikit.tests.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-2.0/tests/nunit.util.tests.dll
Normal file
BIN
build-support/tools/nunit/net-2.0/tests/nunit.util.tests.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-2.0/tests/test-assembly.dll
Normal file
BIN
build-support/tools/nunit/net-2.0/tests/test-assembly.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-2.0/tests/test-utilities.dll
Normal file
BIN
build-support/tools/nunit/net-2.0/tests/test-utilities.dll
Normal file
Binary file not shown.
BIN
build-support/tools/nunit/net-2.0/tests/timing-tests.dll
Normal file
BIN
build-support/tools/nunit/net-2.0/tests/timing-tests.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -71,6 +71,8 @@
|
||||
<include name="Spring.Web.dll" />
|
||||
<include name="System.Web.Services.dll" />
|
||||
<include if="${net-3.0.installed and net-3.0}" name="${net-3.0.ReferenceInstallPath}\System.ServiceModel.dll" />
|
||||
<include if="${nant.settings.currentframework == 'net-4.0'}" name="System.ServiceModel.Activation.dll" />
|
||||
|
||||
</references>
|
||||
</csc>
|
||||
</target>
|
||||
|
||||
@@ -25,8 +25,11 @@
|
||||
<include name="../GenCommonAssemblyInfo.cs" />
|
||||
</sources>
|
||||
<references basedir="${current.bin.dir}">
|
||||
<include name="Common.Logging.dll"/>
|
||||
<include name="nunit.framework.dll"/>
|
||||
<include name="Spring.Core.dll" />
|
||||
<include name="Spring.Data.dll" />
|
||||
<include name="System.Data.dll" />
|
||||
<include name="*.dll" />
|
||||
<exclude name="${project::get-name()}.dll" />
|
||||
<exclude name="CloverRuntime.dll" />
|
||||
</references>
|
||||
|
||||
@@ -35,6 +35,7 @@
|
||||
<include name="System.Configuration.dll" />
|
||||
<include name="System.Web.dll" />
|
||||
<include name="System.Web.Services.dll" />
|
||||
<include if="${net-4.0.installed and net-4.0}" name="System.Web.ApplicationServices.dll" />
|
||||
</references>
|
||||
</csc>
|
||||
</target>
|
||||
|
||||
@@ -214,7 +214,7 @@ limitations under the License.
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="nunit.framework" publicKeyToken="96d09a1eb7f44a77" culture="Neutral" />
|
||||
<bindingRedirect oldVersion="2.0.6.0" newVersion="2.1.4.0" />
|
||||
<bindingRedirect oldVersion="2.5.2.9222" newVersion="2.5.7.10213" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
|
||||
@@ -232,14 +232,13 @@ limitations under the License.
|
||||
</root>
|
||||
</log4net>
|
||||
|
||||
<!--
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="nunit.framework" publicKeyToken="96d09a1eb7f44a77" culture="Neutral" />
|
||||
<bindingRedirect oldVersion="2.0.6.0" newVersion="2.1.4.0" />
|
||||
<bindingRedirect oldVersion="2.5.2.9222" newVersion="2.5.7.10213" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
-->
|
||||
|
||||
</configuration>
|
||||
|
||||
@@ -74,14 +74,14 @@ limitations under the License.
|
||||
</root>
|
||||
</log4net>
|
||||
-->
|
||||
<!--
|
||||
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="nunit.framework" publicKeyToken="96d09a1eb7f44a77" culture="Neutral" />
|
||||
<bindingRedirect oldVersion="2.0.6.0" newVersion="2.4.1.0" />
|
||||
<bindingRedirect oldVersion="2.5.2.9222" newVersion="2.5.7.10213" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
-->
|
||||
|
||||
</configuration>
|
||||
|
||||
Reference in New Issue
Block a user