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)
1726importElement.Location.Line, 1731importElement.Location.Line, 1845importElement.Location.Line, 2046importElement.Location.Line, 2051importElement.Location.Line, 2107importElement.Location.Line, 2112importElement.Location.Line, 2248importElement.Location.Line, 2253importElement.Location.Line, 2279importElement.Location.Line, 2284importElement.Location.Line, 2334importElement.Location.Line, 2339importElement.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)
401taskLocation.Line,
Instance\TaskFactoryEngineContext.cs (1)
121return _elementLocation.Line;
Instance\TaskRegistry.cs (1)
1580new BuildEventFileInfo(elementLocation.File, elementLocation.Line, elementLocation.Column),