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