Implemented interface member:
property
Line
Microsoft.Build.Shared.IMSBuildElementLocation.Line
2 overrides of Line
Microsoft.Build (2)
ElementLocation\ElementLocation.cs (2)
281public override int Line 359public override int Line
30 references to Line
Microsoft.Build (30)
BackEnd\Components\Logging\TaskLoggingContext.cs (1)
54task.Location.Line,
BackEnd\Components\RequestBuilder\TaskHost.cs (1)
172return _taskLocation.Line;
ElementLocation\ElementLocation.cs (4)
74get { return GetLocationString(File, Line, Column); } 94return Line.GetHashCode() ^ Column.GetHashCode(); 115if (this.Line != that.Line || this.Column != that.Column) 146int line = Line;
ElementLocation\XmlAttributeWithLocation.cs (3)
49{ return Location.Line; } 79_elementLocation = ElementLocation.Create(ownerDocumentWithLocation.FullPath, _elementLocation.Line, _elementLocation.Column); 92return Location.Line != 0;
ElementLocation\XmlDocumentWithLocation.cs (1)
210return new XmlElementWithLocation(prefix, localName, namespaceURI, this, _elementLocation.Value.Line, _elementLocation.Value.Column);
ElementLocation\XmlElementWithLocation.cs (3)
66{ return Location.Line; } 99_elementLocation = ElementLocation.Create(ownerDocumentWithLocation.FullPath, _elementLocation.Line, _elementLocation.Column); 112return Location.Line != 0;
Evaluation\Evaluator.cs (13)
1792importElement.Location.Line, 1797importElement.Location.Line, 1909importElement.Location.Line, 2110importElement.Location.Line, 2115importElement.Location.Line, 2171importElement.Location.Line, 2176importElement.Location.Line, 2312importElement.Location.Line, 2317importElement.Location.Line, 2343importElement.Location.Line, 2348importElement.Location.Line, 2398importElement.Location.Line, 2403importElement.Location.Line,
Evaluation\Profiler\EvaluationProfiler.cs (1)
72return _shouldTrackElements ? new EvaluationFrame(this, CurrentLocation.WithFileLineAndElement(element.Location.File, element.Location.Line, element)) : null;
Instance\TaskFactories\AssemblyTaskFactory.cs (1)
389taskLocation.Line,
Instance\TaskFactoryEngineContext.cs (1)
121return _elementLocation.Line;
Instance\TaskRegistry.cs (1)
1572new BuildEventFileInfo(elementLocation.File, elementLocation.Line, elementLocation.Column),