I have a NAnt script like below:
<if test="${a}>${b}">
<call target="target"/>
</if>
What I want is to convert it into MSBuild script. I found that there is tag to write conditions but it is only used for defining property/item.
Can we write 'if' condition in MSBuild? Please help!