mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
a98cfa1b66
svn path=/trunk/; revision=19491
20 lines
513 B
XML
20 lines
513 B
XML
<?xml version="1.0"?>
|
|
<project name="ReactOS.CustomRevisionAction" default="build">
|
|
|
|
<property name="output.dir" value="bin" />
|
|
|
|
<target name="build" description="Build component">
|
|
<mkdir dir="${output.dir}" />
|
|
<csc target="exe"
|
|
output="${output.dir}\ReactOS.CustomRevisionAction.exe"
|
|
optimize="true"
|
|
debug="true"
|
|
doc="${output.dir}\ReactOS.CustomRevisionAction.xml"
|
|
warninglevel="0">
|
|
<sources>
|
|
<include name="*.cs" />
|
|
</sources>
|
|
</csc>
|
|
</target>
|
|
|
|
</project>
|