大家好,这是我的目标调用代码。
<target name="abc">
<var name="x" value="10"/>
<antcall target="def"/>
<!--Again Access The value of x here and also change it here-->
</target>
<target name="def">
<!--Access The value of x here and also change it here-->
</target>
而且我想在其他构建文件中访问这个X,有什么办法吗