- Fix KiDispatchException to unmask KI_EXCEPTION_INTERNAL when setting the exception...
[reactos.git] / irc / TechBot / TechBot.Console / Default.build
1 <?xml version="1.0"?>
2 <project name="TechBot.Console" 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="exe"
9 output="${output.dir}\TechBot.Console.exe"
10 optimize="true"
11 debug="true"
12 doc="${output.dir}\TechBot.Console.xml"
13 warninglevel="0">
14 <sources>
15 <include name="*.cs" />
16 </sources>
17 <references>
18 <include name="${output.dir}\TechBot.Library.dll" />
19 </references>
20 </csc>
21 </target>
22
23 </project>