Guest User

Untitled

a guest
Feb 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <PropertyGroup>
  2. <PropertyA>@(SomeItemGroup)</PropertyA>
  3. <PropertyB>$(PropertyA)</PropertyB>
  4. </PropertyGroup>
  5.  
  6. <Message Importance="high" Text="$(PropertyA)"/>
  7. <Message Importance="high" Text="$(PropertyB)"/>
  8.  
  9. <PropertyGroup>
  10. <PropertyA>@(SomeItemGroup->'%(SomeItem)', '')</PropertyA> => One String for List
  11. <PropertyB>$(PropertyA.Substring(0, 5))</PropertyB> => PropertyA does not resolve
  12. </PropertyGroup>
  13.  
  14. <Message Importance="high" Text="$(PropertyA)"/>
  15. <Message Importance="high" Text="$(PropertyB)"/>
Add Comment
Please, Sign In to add comment