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)
4230public ICollection<string> ItemTypes => Items.ItemTypes;
Instance\ProjectInstance.cs (4)
1161return _items.ItemTypes; 2446foreach (string itemType in _items.ItemTypes) 2663int typeCount = _items.ItemTypes.Count; 2666foreach (string itemType in _items.ItemTypes)