2 references to s_pathComparer
Microsoft.Build.Framework (2)
PathHelpers\AbsolutePath.cs (2)
203
public bool Equals(AbsolutePath other) =>
s_pathComparer
.Equals(Value, other.Value);
209
public override int GetHashCode() => Value is null ? 0 :
s_pathComparer
.GetHashCode(Value);