Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a property group, like so:

<PropertyGroup>
    <Platform>Win32;x64</Platform>
</PropertyGroup>

And I want to batch in an Exec task, like so:

<Exec Command='devenv MySolution.sln /Build "Release|%(Platform)"' />

But of course, as written I get an error:

error MSB4095: The item metadata %(Platform) is being referenced without an item name.  Specify the item name by using %(itemname.Platform).

Can I batch tasks on properties that are lists? I suppose I could hack it by creating a placeholder ItemGroup with metadata and batch on that.

share|improve this question

1 Answer

up vote 9 down vote accepted

Since your property is separated by a ; you can directly create an item from it and then batch from that. For example.

<Project ToolsVersion="3.5" DefaultTargets="Demo" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Platform>Win32;x64</Platform>
  </PropertyGroup>

  <Target Name="Demo">
    <ItemGroup>
      <_PlatFormItem Include="$(Platform)"/>
    </ItemGroup>

    <Message Text="Platform: $(Platform)"/>
    <Message Text="_PlatFormItem: @(_PlatFormItem)"/>
    <Message Text="Platform.Identity: %(_PlatFormItem.Identity)"/>

    <Exec Command='devenv MySolution.sln /Build "Release|%(_PlatFormItem.Identity)"' />
  </Target>

</Project>

Here I'm batching using %(_PlatformItem.Identity) because Identity has the values (Win32 and x64).

share|improve this answer
+1 for the .Identity tip. The %() syntax is impossible to google for. – marklam Mar 18 '10 at 15:59
Shame the error message is BS as usual. – Mrchief Aug 23 '12 at 15:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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