Implemented interface member:
property
Column
Microsoft.Build.Shared.IMSBuildElementLocation.Column
3 overrides of Column
Microsoft.Build (2)
ElementLocation\ElementLocation.cs (2)
291public override int Column 367public override int Column
Microsoft.Build.Engine.UnitTests (1)
MockElementLocation.cs (1)
58public override int Column
35 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)
208return 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)
431taskLocation.Column,
Instance\TaskFactoryEngineContext.cs (1)
134return _elementLocation.Column;
Instance\TaskRegistry.cs (1)
1650new BuildEventFileInfo(elementLocation.File, elementLocation.Line, elementLocation.Column),
Microsoft.Build.BuildCheck.UnitTests (1)
TaskInvocationAnalysisDataTests.cs (1)
107data.TaskInvocationLocation.Column.ShouldBeGreaterThan(0);
Microsoft.Build.Engine.OM.UnitTests (4)
Construction\ProjectItemElement_Tests.cs (2)
105Assert.Equal(27, metadatum1.Location.Column); 106Assert.Equal(43, metadatum2.Location.Column);
ObjectModelRemoting\Helpers\ViewValidation.construction.cs (2)
265Assert.Equal(expected.Column, actual.Column);
Microsoft.Build.UnitTests.Shared (3)
ObjectModelHelpers.cs (3)
2054if (x.Line != y.Line || x.Column != y.Column) 2069return obj.Line.GetHashCode() ^ obj.Column.GetHashCode() ^ obj.File.GetHashCode();