13 references to AllowItemLists
Microsoft.Build (4)
Evaluation\Conditionals\Parser.cs (2)
22
AllowPropertiesAndItemLists = AllowProperties |
AllowItemLists
,
28
AllowAll = AllowProperties |
AllowItemLists
| AllowItemMetadata
Evaluation\Conditionals\Scanner.cs (2)
187
if ((_options & ParserOptions.
AllowItemLists
) == 0)
615
if ((_options & ParserOptions.
AllowItemLists
) == 0)
Microsoft.Build.Engine.UnitTests (9)
Parser_Tests.cs (9)
219
ParserOptions.AllowProperties | ParserOptions.
AllowItemLists
, _elementLocation);
224
ParserOptions.AllowProperties | ParserOptions.
AllowItemLists
, _elementLocation);
228
ParserOptions.AllowProperties | ParserOptions.
AllowItemLists
, _elementLocation);
241
tree = p.Parse("%(foo) == 'a.cs;b.cs'", ParserOptions.AllowProperties | ParserOptions.
AllowItemLists
, _elementLocation);
253
tree = p.Parse("'a.cs;b.cs' == %(foo)", ParserOptions.AllowProperties | ParserOptions.
AllowItemLists
, _elementLocation);
265
tree = p.Parse("'%(foo)' == 'a.cs;b.cs'", ParserOptions.AllowProperties | ParserOptions.
AllowItemLists
, _elementLocation);
277
tree = p.Parse("'otherstuff%(foo)' == 'a.cs;b.cs'", ParserOptions.AllowProperties | ParserOptions.
AllowItemLists
, _elementLocation);
289
tree = p.Parse("'%(foo)otherstuff' == 'a.cs;b.cs'", ParserOptions.AllowProperties | ParserOptions.
AllowItemLists
, _elementLocation);
301
tree = p.Parse("somefunction(%(foo), 'otherstuff')", ParserOptions.AllowProperties | ParserOptions.
AllowItemLists
, _elementLocation);