mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
f250d1638b
svn path=/trunk/; revision=19490
21 lines
471 B
XML
21 lines
471 B
XML
<?xml version="1.0"?>
|
|
<project name="ReactOS.Verify" 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.Verify.exe"
|
|
optimize="true"
|
|
debug="true"
|
|
doc="${output.dir}\ReactOS.Verify.xml"
|
|
warninglevel="0">
|
|
<sources>
|
|
<include name="*.cs" />
|
|
</sources>
|
|
</csc>
|
|
</target>
|
|
|
|
</project>
|