You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?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>
|