2 implementations of ItemTypes
Microsoft.Build (2)
Collections\ItemDictionary.cs (1)
98public ICollection<string> ItemTypes
Instance\ImmutableProjectCollections\ImmutableItemDictionary.cs (1)
59public ICollection<string> ItemTypes => _itemsByType.Keys;
5 references to ItemTypes
Microsoft.Build (5)
Definition\Project.cs (1)
4188public ICollection<string> ItemTypes => Items.ItemTypes;
Instance\ProjectInstance.cs (4)
1148return _items.ItemTypes; 2384foreach (string itemType in _items.ItemTypes) 2601int typeCount = _items.ItemTypes.Count; 2604foreach (string itemType in _items.ItemTypes)