开发者

How to set 'condition' using a condition stored in a property?

开发者 https://www.devze.com 2022-12-24 08:37 出处:网络
I have a condition such as \'a==1\' stored in property $(c) and I wanna used it as the condition f开发者_如何学Pythonor task Message like below code:

I have a condition such as 'a==1' stored in property $(c) and I wanna used it as the condition f开发者_如何学Pythonor task Message like below code:

  <PropertyGroup>
    <aa>1>2</aa>
  </PropertyGroup>

  <Target Name="t">
    <Message Text="122333" Condition="$(aa)" />
  </Target>

Error was raised! So, how can I do it? Please help!


You can easily use property values for evaluating conditions. Here is an example:

<PropertyGroup>
    <aa>1</aa>
</PropertyGroup>

<Target Name="Build">
    <Message Text="Some text" Condition=" $(aa) &lt; 2 " />
</Target>

Note that:

  • Property values are strings, you must evaluate the condition in the Condition attribute. See MSDN Docs on evaluating conditions.
  • You must escape XML characters (replace < with &lt; )
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号