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.
|
- <project name="manual-test-for-input" default="both">
- <target name="single">
- <input addproperty="single" message="This is a prompt" />
- <echo>$${single} is ${single}</echo>
- </target>
-
- <target name="multi">
- <input addproperty="multi"
- message="This is a prompt "
- validargs="1,2" />
- <echo>$${multi} is ${multi}</echo>
- </target>
-
- <target name="both" depends="single,multi" />
- </project>
|