1 write to Line
Microsoft.Build.Framework (1)
Profiler\EvaluationLocation.cs (1)
150Line = line;
16 references to Line
Microsoft.Build (9)
Evaluation\Profiler\EvaluationLocationPrettyPrinterBase.cs (1)
96evaluationLocation.Line?.ToString() ?? string.Empty,
Logging\BinaryLogger\BuildEventArgsWriter.cs (3)
1310Write(item.Line.HasValue); 1311if (item.Line.HasValue) 1313Write(item.Line.Value);
Logging\EvaluationLocationIdAgnosticComparer.cs (3)
31x.Line == y.Line && 44hashCode = (hashCode * -1521134295) + EqualityComparer<int?>.Default.GetHashCode(obj.Line);
LogMessagePacketBase.cs (2)
1041bool lineHasValue = evaluationLocation.Line.HasValue; 1042int line = lineHasValue ? evaluationLocation.Line.Value : 0;
Microsoft.Build.Framework (7)
Profiler\EvaluationLocation.cs (7)
189this.File, this.Line, this.ElementName, this.ElementDescription, this.Kind); 202this.File, this.Line, this.ElementName, this.ElementDescription, this.Kind); 226return CreateLocationForGlob(this.Id, this.EvaluationPass, this.EvaluationPassDescription, this.File, this.Line, globDescription); 240Line == other.Line && 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}"; 264hashCode = (hashCode * -1521134295) + EqualityComparer<int?>.Default.GetHashCode(Line);