public bool Equals(LibraryDependency other) { if (other == null) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(AutoReferenced == other.AutoReferenced && EqualityUtility.EqualsWithNullCheck(LibraryRange, other.LibraryRange) && EqualityUtility.EqualsWithNullCheck(Type, other.Type) && IncludeType == other.IncludeType && SuppressParent == other.SuppressParent && NoWarn.SequenceEqualWithNullCheck(other.NoWarn)); }
public bool Equals(LibraryDependency other) { if (other == null) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(AutoReferenced == other.AutoReferenced && EqualityUtility.EqualsWithNullCheck(LibraryRange, other.LibraryRange) && EqualityUtility.EqualsWithNullCheck(Type, other.Type) && IncludeType == other.IncludeType && SuppressParent == other.SuppressParent && NoWarn.SequenceEqualWithNullCheck(other.NoWarn) && GeneratePathProperty == other.GeneratePathProperty && VersionCentrallyManaged == other.VersionCentrallyManaged); }