vote up 0 vote down star

Given this Itemgroup:

<ItemGroup>
  <Foo Include="First">
    <Value>1</Value>
  </Foo>
  <Foo Include="Second">
    <Value>2</Value>
  </Foo>
</ItemGroup>

How can I get the Value metadata for the second item (2)? I'm thinking along the lines of:

<Message Text="%(Foo.Value)" Condition="'' == 'Second'" />

But I don't know how to write the Condition attribute.

Thanks!

flag

77% accept rate

2 Answers

vote up 5 vote down check

Identity metadata gives the item's value.

<Message Text="%(Foo.Value)" Condition="'%(Foo.Identity)' == 'Second'" />
link|flag
Thanks I just learned something. – Marcel Gosselin Nov 3 at 22:25
Me too, thanks! – michielvoo Nov 4 at 12:16
vote up 0 vote down

I am not a pro with msbuild but I doubt this is possible. I found a workaround, you can add another metadata tag inside your Foo group and this will work as described below.

<ItemGroup>
    <Foo Include="First">
        <Value>1</Value>
        <Source>First</Source>
    </Foo>
    <Foo Include="Second">
        <Value>2</Value>
        <Source>Second</Source>
    </Foo>
    <Foo Include="Third">
        <Value>2</Value>
    </Foo>
</ItemGroup>

and the conditional like this will print only for the 2nd of the above 3 elements

<Message Text="%(Foo.Value)" Condition="'%(Foo.Source)' == 'Second'"  />
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.