summaryrefslogtreecommitdiff
path: root/dotnet/Qpid.Codec/default.build
blob: db9e8d1166dc0eca85fd4092577a060217b54503 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0"?>
<project name="Apache.Qpid.Codec" 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" />	
         </references>
        </csc>
    </target>
</project>