7 references to Location
Microsoft.Build (7)
BuildCheck\Checks\NoEnvironmentVariablePropertyCheck.cs (7)
113
Location
.File == other.Location.File &&
114
Location
.Line == other.Location.Line &&
115
Location
.Column == other.Location.Column;
120
hashCode = hashCode * 31 + (
Location
.File != null ?
Location
.File.GetHashCode() : 0);
121
hashCode = hashCode * 31 +
Location
.Line.GetHashCode();
122
hashCode = hashCode * 31 +
Location
.Column.GetHashCode();