<?xml version="1.0"?> <!-- Comment outside of project --> <project name="Ant" default="default"> <!-- Comment inside of project --> <description>Primary buildfile for building Ant itself</description> <property name="foo" value="true"/> <target name="default" depends="main"> <echo text="Default Target is Executing"/> <buildtarget target="main" if="foo"/> </target> <target name="main"> <echo text="Main Target is Executing"/> </target> </project>
No Description