Identify TechBot to allow private messages
[reactos.git] / irc / TechBot / CHMLibrary / Default.build
1 <?xml version="1.0"?>
2 <project name="CHMLibrary" default="build">
3
4 <property name="output.dir" value="..\bin" />
5
6 <target name="build" description="Build component">
7 <mkdir dir="${output.dir}" />
8 <csc target="library"
9 output="${output.dir}\CHMLibrary.dll"
10 optimize="true"
11 debug="true"
12 doc="${output.dir}\CHMLibrary.xml"
13 warninglevel="0">
14 <sources>
15 <include name="**/*.cs" />
16 </sources>
17 <references>
18 <include name="${output.dir}\Compression.dll" />
19 </references>
20 </csc>
21 </target>
22
23 </project>