Nam G VU
Nam G VU

Reputation: 35384

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

I have a condition such as 'a==1' stored in property $(c) and I wanna used it as the condition for 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!

Upvotes: 1

Views: 2240

Answers (1)

Todd
Todd

Reputation: 5117

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; )

Upvotes: 2

Related Questions