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