2 overrides of HasUnsavedChanges
Microsoft.Build.Engine.OM.UnitTests (1)
ObjectModelRemoting\RemoteProjectsProviderMock\ConstructionLinkMocks\MockProjectRootElementLink.cs (1)
197
public override bool
HasUnsavedChanges
=> Proxy.HasUnsavedChanges;
Microsoft.Build.Engine.UnitTests (1)
InstanceFromRemote\FakeProjectRootElementLink.cs (1)
28
public override bool
HasUnsavedChanges
=> throw new NotImplementedException();
1 reference to HasUnsavedChanges
Microsoft.Build (1)
Construction\ProjectRootElement.cs (1)
592
public bool HasUnsavedChanges => Link != null ? RootLink.
HasUnsavedChanges
: Version != _versionOnDisk;