📄 listing7-05_build.xml_depend
字号:
<!-- Use dependencies for splitting up
several tasks/targets into logical steps.
Dependencies are made with the "depends" attribute
of the <target> element.
-->
<project name="example" default="build">
<target name="build">
<echo message="building application..." />
</target>
<target name="deploy" depends="build">
<echo message="deploying application..." />
</target>
</project>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -