Figure 8 NAnt Build File
กก
<?xml version="1.0"?>
<project name="NUnit Example" default="build" basedir=".">
    <description>The NUnit Example Project</description>
    <property name="debug" value="true"/>
    <target name="build" description="compiles the source code">
        <csc target="library" output=".\bin\debug\NUnitExample.dll" 
                debug="${debug}">
            <references>
                <includes name="C:\program files\NUnit 
             V2.1\bin\NUnit.Framework.dll" />
            </references>
            <sources>
                <includes name="HashtableTest.cs"/>
            </sources>
        </csc>
    </target>
</project>