mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
21 lines
513 B
Text
21 lines
513 B
Text
|
<?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>
|