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)
173return _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)
1713importElement.Location.Line, 1718importElement.Location.Line, 1832importElement.Location.Line, 2033importElement.Location.Line, 2038importElement.Location.Line, 2094importElement.Location.Line, 2099importElement.Location.Line, 2235importElement.Location.Line, 2240importElement.Location.Line, 2266importElement.Location.Line, 2271importElement.Location.Line, 2321importElement.Location.Line, 2326importElement.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)
122return _elementLocation.Line;
Instance\TaskRegistry.cs (1)
1580new BuildEventFileInfo(elementLocation.File, elementLocation.Line, elementLocation.Column),