summaryrefslogtreecommitdiff
path: root/RC6/dotnet/Qpid.Common.Tests/default.build
diff options
context:
space:
mode:
Diffstat (limited to 'RC6/dotnet/Qpid.Common.Tests/default.build')
-rw-r--r--RC6/dotnet/Qpid.Common.Tests/default.build31
1 files changed, 31 insertions, 0 deletions
diff --git a/RC6/dotnet/Qpid.Common.Tests/default.build b/RC6/dotnet/Qpid.Common.Tests/default.build
new file mode 100644
index 0000000000..00658bdbe2
--- /dev/null
+++ b/RC6/dotnet/Qpid.Common.Tests/default.build
@@ -0,0 +1,31 @@
+<?xml version="1.0"?>
+<project name="Apache.Qpid.Common" default="test">
+
+ <target name="build">
+ <csc target="library"
+ define="${build.defines}"
+ warnaserror="true" debug="${build.debug}"
+ output="${build.dir}/${project::get-name()}.Tests.dll">
+
+ <sources>
+ <include name="**/*.cs" />
+ </sources>
+ <references>
+ <include name="${build.dir}/log4net.dll" />
+ <include name="${build.dir}/nunit.framework.dll" />
+ <include name="${build.dir}/${project::get-name()}.dll" />
+ <include name="${build.dir}/Apache.Qpid.Codec.dll" />
+ <include name="${build.dir}/Apache.Qpid.Messaging.dll" />
+ <include name="${build.dir}/Apache.Qpid.Buffer.dll" />
+ </references>
+
+ </csc>
+ </target>
+ <target name="test" depends="build">
+ <nunit2>
+ <formatter type="${nant.formatter}" usefile="false" />
+ <test assemblyname="${build.dir}/${project::get-name()}.Tests.dll" />
+ </nunit2>
+ </target>
+</project>
+