I would like to do something like this:

<PropertyGroup>
<propone>value</propone>
</PropertyGroup>

<PropertyGroup>
<proptwo>$(propone)</proptwo>
</PropertyGroup>

Pass one property value as another. Is there a way to do this? How?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I think you provided the answer right there in your question: yes, it is possible in just the way that you suggested.

An example:

<Project ToolsVersion="3.5" DefaultTargets="Test" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <SomeProperty>Some Property Value</SomeProperty>
  </PropertyGroup>
  <PropertyGroup>
    <SomeOtherProperty>$(SomeProperty) with something added to it</SomeOtherProperty>
  </PropertyGroup>
  <Target Name="Test">
    <Message Text="$(SomeOtherProperty)" />
  </Target>
</Project>

This will print Some Property Value with something added to it.

link|improve this answer
ok, the issue was somwhere else. I was calling property before import tag. :( My fault but the answer is right and gave me a clue to search bug somewhere else. Thanks! – truthseeker Jan 31 '10 at 0:02
feedback

Your Answer

 
or
required, but never shown

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