summaryrefslogtreecommitdiff
path: root/qpid/dotnet/Qpid.Common/default.build
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/dotnet/Qpid.Common/default.build')
-rw-r--r--qpid/dotnet/Qpid.Common/default.build28
1 files changed, 28 insertions, 0 deletions
diff --git a/qpid/dotnet/Qpid.Common/default.build b/qpid/dotnet/Qpid.Common/default.build
new file mode 100644
index 0000000000..36055b9ca9
--- /dev/null
+++ b/qpid/dotnet/Qpid.Common/default.build
@@ -0,0 +1,28 @@
+<?xml version="1.0"?>
+<project name="Apache.Qpid.Common" default="build">
+ <!--
+ Properties that come from master build file
+ - build.dir: root directory for build
+ - build.debug: true if building debug release
+ - build.defines: variables to define during build
+ -->
+
+ <target name="build">
+ <csc target="library"
+ define="${build.defines}"
+ debug="${build.debug}"
+ output="${build.dir}/${project::get-name()}.dll">
+
+ <sources>
+ <include name="**/*.cs" />
+ </sources>
+ <references>
+ <include name="${build.dir}/log4net.dll" />
+ <include name="${build.dir}/Apache.Qpid.Buffer.dll" />
+ <include name="${build.dir}/Apache.Qpid.Messaging.dll" />
+ <include name="${build.dir}/Apache.Qpid.Codec.dll" />
+ </references>
+ </csc>
+ </target>
+</project>
+