0
我想在某些條件滿足時做某些事情,但似乎在某處我的語法錯誤。我需要有三個if
條件才能完成一件事,但我不知道如何輸入if
之一的語句。Nant嵌套如果條件
<if test="${build.MoniXXXtor == 'true'} or test="${build.XXX== 'true'}" or test="${build.yyy== 'true'}">
<property name="solutionFile" value="${svn.Lib.path}"/>
<property name="LocalPath" value="${Local.Lib.path}"/>
<call target="getLatest" if="${source.getLatest == 'true'}"/>
</if>
看起來上面的OR
條件的語法是錯誤的。
如果條件在同一行,你如何指定一個。 – user1248327
你如何指定一個更多的條件? – user1248327
@ user1248327:你點了鏈接嗎?看看第二個例子。 – M4N