2 implementations of Column
Microsoft.Build (2)
ElementLocation\ElementLocation.cs (1)
59public abstract int Column
ElementLocation\RegistryLocation.cs (1)
65public int Column
18 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();
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)
313location?.Column ?? 0, 351location?.Column ?? 0, 473location.Column, 493location.Column,
Instance\ProjectPropertyInstance.cs (2)
118EnvironmentVariableReadEventArgs args = new(Name, _escapedValue, location.File, location.Line, location.Column); 125_location = (location.File, location.Line, location.Column);
src\msbuild\src\Shared\BuildEventFileInfo.cs (1)
42: this(location.File, location.Line, location.Column)
src\msbuild\src\Shared\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.Framework (3)
BuildCheck\BuildCheckEventArgs.cs (3)
162: base(code: result.Code, file: result.Location.File, lineNumber: result.Location.Line, columnNumber: result.Location.Column, message: result.FormatMessage()) => 185: base(code: result.Code, file: result.Location.File, lineNumber: result.Location.Line, columnNumber: result.Location.Column, message: result.FormatMessage()) 208: base(code: result.Code, file: result.Location.File, lineNumber: result.Location.Line, columnNumber: result.Location.Column, message: result.FormatMessage())