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)
183return _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)
1727importElement.Location.Column, 1732importElement.Location.Column, 1846importElement.Location.Column, 2047importElement.Location.Column, 2052importElement.Location.Column) 2108importElement.Location.Column, 2113importElement.Location.Column) 2249importElement.Location.Column, 2254importElement.Location.Column) 2280importElement.Location.Column, 2285importElement.Location.Column) 2335importElement.Location.Column, 2340importElement.Location.Column)
Instance\TaskFactories\AssemblyTaskFactory.cs (1)
402taskLocation.Column,
Instance\TaskFactoryEngineContext.cs (1)
133return _elementLocation.Column;
Instance\TaskRegistry.cs (1)
1580new BuildEventFileInfo(elementLocation.File, elementLocation.Line, elementLocation.Column),