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