3 overrides of RemoveProperty
Microsoft.Build (1)
Definition\Project.cs (1)
3173public override bool RemoveProperty(ProjectProperty property)
Microsoft.Build.Engine.OM.UnitTests (1)
ObjectModelRemoting\RemoteProjectsProviderMock\EvaluationLinkMocks\MockProjectLink.cs (1)
240public override bool RemoveProperty(ProjectProperty property) => this.Proxy.RemoveProperty(this.Linker.Export<ProjectProperty, MockProjectPropertyLinkRemoter>(property));
Microsoft.Build.Engine.UnitTests (1)
InstanceFromRemote\FakeProjectLink.cs (1)
123public override bool RemoveProperty(ProjectProperty property) => throw new NotImplementedException();
1 reference to RemoveProperty
Microsoft.Build (1)
Definition\Project.cs (1)
1301return implementation.RemoveProperty(property);