如果数据项的数量超过一个,我想要抛出错误。 为什么以下工作没有?我如何编码正确的表达式?
<ItemGroup>
<Data Include="a"/>
<Data Include="b"/>
</ItemGroup>
<Error Text="Error!" Condition="@(Data->Count()) > 1" />
PS。 msbuild v4.0
答案 0 :(得分:31)
我找到了解决方案:你想用单引号
包装你的表达式<Error Text="Error!" Condition="'@(Data->Count())' > 1" />