summaryrefslogtreecommitdiff
path: root/RC2/dotnet/Qpid.Buffer.Tests/default.build
diff options
context:
space:
mode:
authorAidan Skinner <aidan@apache.org>2008-04-01 22:16:32 +0000
committerAidan Skinner <aidan@apache.org>2008-04-01 22:16:32 +0000
commit42927123b73c8303c99b7aea5ffa8f4b9f13e62b (patch)
tree9d462e745dac2c22c09a9c006cc180c50f27f148 /RC2/dotnet/Qpid.Buffer.Tests/default.build
parent453f1f57d344919fb92ec9d8e4eed12c3b0baae0 (diff)
downloadqpid-python-42927123b73c8303c99b7aea5ffa8f4b9f13e62b.tar.gz
Tag the first M2.1 to get voted on
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/tags/M2.1@643624 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'RC2/dotnet/Qpid.Buffer.Tests/default.build')
-rw-r--r--RC2/dotnet/Qpid.Buffer.Tests/default.build27
1 files changed, 27 insertions, 0 deletions
diff --git a/RC2/dotnet/Qpid.Buffer.Tests/default.build b/RC2/dotnet/Qpid.Buffer.Tests/default.build
new file mode 100644
index 0000000000..688633fc11
--- /dev/null
+++ b/RC2/dotnet/Qpid.Buffer.Tests/default.build
@@ -0,0 +1,27 @@
+<?xml version="1.0"?>
+<project name="Apache.Qpid.Buffer" 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}/nunit.framework.dll" />
+ <include name="${build.dir}/${project::get-name()}.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>
+