2 implementations of Remove
Microsoft.Build (2)
Collections\ItemDictionary.cs (1)
267public bool Remove(T projectItem)
Instance\ImmutableProjectCollections\ImmutableItemDictionary.cs (1)
171public bool Remove(T projectItem) => throw new NotSupportedException();
2 references to Remove
Microsoft.Build (2)
Definition\Project.cs (1)
4583bool result = Items.Remove(item);
Instance\ProjectInstance.cs (1)
2029return _items.Remove(item);