2 implementations of ItemTypes
Microsoft.Build (2)
Collections\ItemDictionary.cs (1)
99public 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)
4199public ICollection<string> ItemTypes => Items.ItemTypes;
Instance\ProjectInstance.cs (4)
1149return _items.ItemTypes; 2399foreach (string itemType in _items.ItemTypes) 2616int typeCount = _items.ItemTypes.Count; 2619foreach (string itemType in _items.ItemTypes)