我有一个条件,如'a == 1'存储在属性$(c)中,我想用它作为任务消息的条件,如下面的代码:
<PropertyGroup>
<aa>1>2</aa>
</PropertyGroup>
<Target Name="t">
<Message Text="122333" Condition="$(aa)" />
</Target>
提出错误! 那么,我该怎么做呢?请帮忙!
答案 0 :(得分:2)
您可以轻松使用属性值来评估条件。这是一个例子:
<PropertyGroup>
<aa>1</aa>
</PropertyGroup>
<Target Name="Build">
<Message Text="Some text" Condition=" $(aa) < 2 " />
</Target>
请注意:
<
替换为<
)