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