mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
21 lines
490 B
Plaintext
21 lines
490 B
Plaintext
|
<?xml version="1.0"?>
|
||
|
<project name="TechBot.IRCLibrary" default="build">
|
||
|
|
||
|
<property name="output.dir" value="..\bin" />
|
||
|
|
||
|
<target name="build" description="Build component">
|
||
|
<mkdir dir="${output.dir}" />
|
||
|
<csc target="library"
|
||
|
output="${output.dir}\TechBot.IRCLibrary.dll"
|
||
|
optimize="true"
|
||
|
debug="true"
|
||
|
doc="${output.dir}\TechBot.IRCLibrary.xml"
|
||
|
warninglevel="0">
|
||
|
<sources>
|
||
|
<include name="*.cs" />
|
||
|
</sources>
|
||
|
</csc>
|
||
|
</target>
|
||
|
|
||
|
</project>
|