// Generated Equality Code: public bool Equals(CellDefinition other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(StringComparer.Ordinal.Equals(CellName, other.CellName) && Assemblies.Equals(other.Assemblies) && StringComparer.Ordinal.Equals(EntryPointTypeName, other.EntryPointTypeName) && StringComparer.Ordinal.Equals(SettingsXml, other.SettingsXml)); }
private bool Equals(Architecture other) { return(Assemblies.Equals(other.Assemblies) && Namespaces.Equals(other.Namespaces) && Types.Equals(other.Types)); }