Implemented interface member:
property
LocationString
Microsoft.Build.Shared.IMSBuildElementLocation.LocationString
14 references to LocationString
Microsoft.Build (9)
Construction\ProjectRootElement.cs (2)
1523MSBuildEventSource.Log.SaveStart(_projectFileLocation.LocationString); 1556MSBuildEventSource.Log.SaveStop(_projectFileLocation.LocationString);
Definition\ToolsetConfigurationReader.cs (3)
97location.LocationString); 142InvalidToolsetDefinitionException.Throw(ex, "ConfigFileReadError", ElementLocation.Create(ex.Source, ex.Line, 0).LocationString, ex.BareMessage); 172InvalidToolsetDefinitionException.Throw("InvalidToolsetValueInConfigFileValue", location.LocationString);
ElementLocation\ElementLocation.cs (1)
133return LocationString;
Evaluation\Evaluator.cs (3)
1078_evaluationLoggingContext.LogComment(MessageImportance.Low, "TargetDoesNotExistBeforeTargetMessage", unescapedBeforeTarget, targetElement.BeforeTargetsLocation.LocationString); 1101_evaluationLoggingContext.LogComment(MessageImportance.Low, "TargetDoesNotExistAfterTargetMessage", unescapedAfterTarget, targetElement.AfterTargetsLocation.LocationString); 2128_evaluationLoggingContext.LogWarning(null, new BuildEventFileInfo(importLocationInProject), "DuplicateImport", importFileUnescaped, previouslyImportedAt.Location.LocationString, parenthesizedProjectLocation);
Microsoft.Build.Engine.OM.UnitTests (3)
Construction\ElementLocationPublic_Tests.cs (3)
119string locations = project.Xml.Location.LocationString + "\r\n"; 133values.ForEach(value => attributeLocations.Add(value.Key + ":" + value.Value.LocationString)); 141locations += value.LocationString + "\r\n";
Microsoft.Build.Engine.UnitTests (2)
Construction\ElementLocation_Tests.cs (1)
440locations += ((XmlNode)node).Name + "==" + ((XmlNode)node).Value ?? String.Empty + ": " + value.LocationString + "\r\n";
Construction\SolutionFilter_Tests.cs (1)
135graphFromSolution.ProjectNodes.Single().ProjectInstance.ProjectFileLocation.LocationString.ShouldBe(simpleProject.Path);