これがシナリオです。私は持っている
<target name="test">
<property file="blah"></property>
<exec dir="" executable="trast.exe" resolveexecutable="true" spawn="true">
</exec>
</target>
<!-- So now I have the second target that uses Return value from first target -->
<target name="test2">
<property file="blah"></property>
<exec dir="" executable=RETURN VALUE resolveexecutable="true" spawn="true">
</exec>
</target>
基本的に、最初のターゲットの結果を次のターゲットで使用する方法が必要です。私はオンラインで調べましたが、1つの解決策は出力を解析することです。しかし、解析せずに取得する方法はありますか?
ありがとう