1 write to Id
Microsoft.Build.Framework (1)
Profiler\EvaluationLocation.cs (1)
145
Id
= id;
11 references to Id
Microsoft.Build.Framework (11)
Profiler\EvaluationLocation.cs (11)
146
ParentId = parentId == EmptyLocation.
Id
? null : parentId; // The empty location doesn't count as a parent id, since it's just a dummy starting point
188
return new EvaluationLocation(this.
Id
, evaluationPass, passDescription ?? PassDefaultDescription[evaluationPass],
201
return new EvaluationLocation(this.
Id
, parentId, this.EvaluationPass, this.EvaluationPassDescription,
208
return new EvaluationLocation(this.
Id
, this.EvaluationPass, this.EvaluationPassDescription, file, null, null, null, this.Kind);
214
return CreateLocationForProject(this.
Id
, this.EvaluationPass, this.EvaluationPassDescription, file, line, element);
220
return CreateLocationForCondition(this.
Id
, this.EvaluationPass, this.EvaluationPassDescription, file, line, condition);
226
return CreateLocationForGlob(this.
Id
, this.EvaluationPass, this.EvaluationPassDescription, this.File, this.Line, globDescription);
235
Id
== other.
Id
&&
252
$"{
Id
}\t{ParentId?.ToString() ?? string.Empty}\t{EvaluationPassDescription ?? string.Empty}\t{File ?? string.Empty}\t{Line?.ToString() ?? string.Empty}\t{ElementName ?? string.Empty}\tDescription:{ElementDescription}\t{this.EvaluationPassDescription}";
259
hashCode = (hashCode * -1521134295) +
Id
.GetHashCode();