Implemented interface member:
property
Column
Microsoft.Build.Shared.IMSBuildElementLocation.Column
2 overrides of Column
Microsoft.Build (2)
ElementLocation\ElementLocation.cs (2)
292public override int Column 370public override int Column
27 references to Column
Microsoft.Build (27)
BackEnd\Components\Logging\TaskLoggingContext.cs (1)
55task.Location.Column,
BackEnd\Components\RequestBuilder\TaskHost.cs (1)
184return _taskLocation.Column;
ElementLocation\ElementLocation.cs (4)
74get { return GetLocationString(File, Line, Column); } 94return Line.GetHashCode() ^ Column.GetHashCode(); 115if (this.Line != that.Line || this.Column != that.Column) 147int column = Column;
ElementLocation\XmlAttributeWithLocation.cs (2)
60{ return Location.Column; } 79_elementLocation = ElementLocation.Create(ownerDocumentWithLocation.FullPath, _elementLocation.Line, _elementLocation.Column);
ElementLocation\XmlDocumentWithLocation.cs (1)
210return new XmlElementWithLocation(prefix, localName, namespaceURI, this, _elementLocation.Value.Line, _elementLocation.Value.Column);
ElementLocation\XmlElementWithLocation.cs (2)
77{ return Location.Column; } 99_elementLocation = ElementLocation.Create(ownerDocumentWithLocation.FullPath, _elementLocation.Line, _elementLocation.Column);
Evaluation\Evaluator.cs (13)
1714importElement.Location.Column, 1719importElement.Location.Column, 1833importElement.Location.Column, 2034importElement.Location.Column, 2039importElement.Location.Column) 2095importElement.Location.Column, 2100importElement.Location.Column) 2236importElement.Location.Column, 2241importElement.Location.Column) 2267importElement.Location.Column, 2272importElement.Location.Column) 2322importElement.Location.Column, 2327importElement.Location.Column)
Instance\TaskFactories\AssemblyTaskFactory.cs (1)
402taskLocation.Column,
Instance\TaskFactoryEngineContext.cs (1)
134return _elementLocation.Column;
Instance\TaskRegistry.cs (1)
1580new BuildEventFileInfo(elementLocation.File, elementLocation.Line, elementLocation.Column),