如何检查msbuild中@properties列表中是否存在$属性

时间:2016-09-26 20:06:54

标签: c# msbuild

我有一个属性列表,它返回一些字符串值v1; v2; V3。我有包含字符串值的属性,我需要检查此值是否包含在字符串列表中,如果该值存在则返回错误

<Error Condition="@(ListOfValues)== $(property)" Text="This Value already exists!"/>

它似乎无法正常工作

1 个答案:

答案 0 :(得分:0)

我能够自己解决这个问题

<Error Condition="%(ListOfValues.Identity)== $(property)" Text="This Value already exists!"/>