5
如何在ant中取消設置屬性?所以這是完全刪除作爲財產?使用條件取消設置Ant中的屬性並刪除Ant中的屬性
<condition property="proguard.config" value="proguard.cfg">
<isset property="proguarded"/>
</condition>
<condition property="proguard.config" value="">
<not>
<isset property="proguarded"/>
</not>
</condition>
這似乎工作。但即使proguard存在諸如proguard.config這樣的屬性,proguard也會運行。那麼如何將proguard.config作爲一個屬性完全有條件地刪除呢?我知道如果proguard在.properties文件中看到proguard.config屬性會運行。