我目前有这样的事情我想helloworld
通过加入属性 value1 和 value2 的值来显示属性的输出。我试过做$(value1$(value2))
,但没有任何建议?
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<value1>hello</value1>
<value2>world</value2>
<helloworld>This works</helloworld>
</PropertyGroup>
<Target Name="Build">
<Message Text = "----Message is: $(value1)"></Message>
<Message Text = "----Message is: $(value1$(value2))"></Message> --->Error :Should display `This works`
</Target>
</Project>