12 references to Create
Microsoft.Build (12)
BuildCheck\Infrastructure\BuildCheckManagerProvider.cs (1)
472ElementLocation.Create(evr.File, evr.LineNumber, evr.ColumnNumber));
BuildCheck\Infrastructure\BuildEventsProcessor.cs (1)
145ElementLocation invocationLocation = ElementLocation.Create(
Construction\Solution\SolutionFile.cs (1)
328var errorLocation = ElementLocation.Create(FullPath, solutionEx.Line ?? 0, solutionEx.Column ?? 0);
Definition\ToolsetConfigurationReader.cs (3)
87ElementLocation location = ElementLocation.Create( 141InvalidToolsetDefinitionException.Throw(ex, "ConfigFileReadError", ElementLocation.Create(ex.Source, ex.Line, 0).LocationString, ex.BareMessage); 167ElementLocation location = ElementLocation.Create(propertyElement.ElementInformation.Source, propertyElement.ElementInformation.LineNumber, 0);
ElementLocation\ElementLocation.cs (2)
166return Create(file, line, column); 176return Create(file, 0, 0);
ElementLocation\XmlAttributeWithLocation.cs (2)
38_elementLocation = ElementLocation.Create(documentWithLocation.FullPath, lineNumber, columnNumber); 79_elementLocation = ElementLocation.Create(ownerDocumentWithLocation.FullPath, _elementLocation.Line, _elementLocation.Column);
ElementLocation\XmlElementWithLocation.cs (2)
50_elementLocation = ElementLocation.Create(documentWithLocation.FullPath, lineNumber, adjustedColumn); 99_elementLocation = ElementLocation.Create(ownerDocumentWithLocation.FullPath, _elementLocation.Line, _elementLocation.Column);