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