我们可以将ant诊断结果打印到单独的文件中吗?我用的是
<target name="diagnostics" description="diagnostics" >
<diagnostics/>
</target>
我能想到的唯一方法是从另一个目标的任务内部调用目标,并让它将输出转储到文本文件中。
<project name="help" default="help">
<target name="diagnostics">
<diagnostics/>
</target>
<target name="help">
<ant output="diag.txt" target="diagnostics"/>
</target>
</project>