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)
1763importElement.Location.Column, 1768importElement.Location.Column, 1882importElement.Location.Column, 2083importElement.Location.Column, 2088importElement.Location.Column) 2144importElement.Location.Column, 2149importElement.Location.Column) 2285importElement.Location.Column, 2290importElement.Location.Column) 2316importElement.Location.Column, 2321importElement.Location.Column) 2371importElement.Location.Column, 2376importElement.Location.Column)
Instance\TaskFactories\AssemblyTaskFactory.cs (1)
390taskLocation.Column,
Instance\TaskFactoryEngineContext.cs (1)
133return _elementLocation.Column;
Instance\TaskRegistry.cs (1)
1572new BuildEventFileInfo(elementLocation.File, elementLocation.Line, elementLocation.Column),