mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
24 lines
570 B
Text
24 lines
570 B
Text
|
<?xml version="1.0"?>
|
||
|
<project name="TechBot.Console" default="build">
|
||
|
|
||
|
<property name="output.dir" value="..\bin" />
|
||
|
|
||
|
<target name="build" description="Build component">
|
||
|
<mkdir dir="${output.dir}" />
|
||
|
<csc target="exe"
|
||
|
output="${output.dir}\TechBot.Console.exe"
|
||
|
optimize="true"
|
||
|
debug="true"
|
||
|
doc="${output.dir}\TechBot.Console.xml"
|
||
|
warninglevel="0">
|
||
|
<sources>
|
||
|
<include name="*.cs" />
|
||
|
</sources>
|
||
|
<references>
|
||
|
<include name="${output.dir}\TechBot.Library.dll" />
|
||
|
</references>
|
||
|
</csc>
|
||
|
</target>
|
||
|
|
||
|
</project>
|