2 implementations of Column
Microsoft.Build (2)
ElementLocation\ElementLocation.cs (1)
59public abstract int Column
ElementLocation\RegistryLocation.cs (1)
65public int Column
31 references to Column
Microsoft.Build (15)
BackEnd\Components\RequestBuilder\IntrinsicTasks\ItemGroupLoggingHelper.cs (1)
276location?.Column ?? 0);
BuildCheck\Checks\NoEnvironmentVariablePropertyCheck.cs (3)
115Location.Column == other.Location.Column; 122hashCode = hashCode * 31 + Location.Column.GetHashCode();
BuildEventFileInfo.cs (1)
42: this(location.File, location.Line, location.Column)
Definition\ProjectProperty.cs (2)
127EnvironmentVariableReadEventArgs args = new(Name, EvaluatedValueEscapedInternal, location.File, location.Line, location.Column); 134_location = (location.File, location.Line, location.Column);
ElementLocation\ElementLocation.cs (1)
115if (this.Line != that.Line || this.Column != that.Column)
Evaluation\PropertyTrackingEvaluatorDataWrapper.cs (4)
301location?.Column ?? 0, 339location?.Column ?? 0, 461location.Column, 480location.Column,
Instance\ProjectPropertyInstance.cs (2)
118EnvironmentVariableReadEventArgs args = new(Name, _escapedValue, location.File, location.Line, location.Column); 125_location = (location.File, location.Line, location.Column);
ProjectErrorUtilities.cs (1)
268throw new InvalidProjectFileException(elementLocation.File, elementLocation.Line, elementLocation.Column, 0 /* Unknown end line */, 0 /* Unknown end column */, message, errorSubCategory, errorCode, helpKeyword);
Microsoft.Build.Engine.UnitTests (13)
Construction\ElementLocation_Tests.cs (13)
44Assert.Equal(0, location.Column); 57Assert.Equal(65536, location.Column); 70Assert.Equal(65537, location.Column); 171Assert.Equal(location.Column, deserializedLocation.Column); 189Assert.Equal(location.Column, deserializedLocation.Column); 202Assert.Equal(65534, location.Column); 247Assert.Equal(0, location.Column); 260Assert.Equal(65535, location.Column); 273Assert.Equal(65534, location.Column); 291Assert.Equal(location.Column, deserializedLocation.Column);
Microsoft.Build.Framework (3)
BuildCheck\BuildCheckEventArgs.cs (3)
163: base(code: result.Code, file: result.Location.File, lineNumber: result.Location.Line, columnNumber: result.Location.Column, message: result.FormatMessage()) => 186: base(code: result.Code, file: result.Location.File, lineNumber: result.Location.Line, columnNumber: result.Location.Column, message: result.FormatMessage()) 209: base(code: result.Code, file: result.Location.File, lineNumber: result.Location.Line, columnNumber: result.Location.Column, message: result.FormatMessage())