mirror of
https://github.com/reactos/reactos.git
synced 2025-06-26 08:59:43 +00:00
ReactOS Sin Verifier
svn path=/trunk/; revision=19490
This commit is contained in:
parent
03582db4bb
commit
f250d1638b
5 changed files with 467 additions and 0 deletions
20
cis/ReactOS.Verify/Default.build
Normal file
20
cis/ReactOS.Verify/Default.build
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?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>
|
Loading…
Add table
Add a link
Reference in a new issue