sigar/tools/PerfBrowser/default.build

21 lines
637 B
Plaintext
Raw Normal View History

2004-06-22 06:37:04 +08:00
<?xml version="1.0"?>
<!-- NAnt build file: http://sourceforge.net/projects/nant/ -->
<project name="PerfBrowser" default="build">
<property name="debug" value="true"/>
<target name="clean" description="clean build files">
<delete file="PerfBrowser.exe" failonerror="false"/>
<delete file="PerfBrowser.pdb" failonerror="false"/>
</target>
<target name="build" description="Build PerfBrowser.exe">
<csc target="winexe" output="PerfBrowser.exe" debug="${debug}">
<sources>
<includes name="MainForm.cs"/>
</sources>
</csc>
</target>
</project>