Implemented interface member:
property
LocationString
Microsoft.Build.Shared.IMSBuildElementLocation.LocationString
14 references to LocationString
Microsoft.Build (9)
Construction\ProjectRootElement.cs (2)
1523
MSBuildEventSource.Log.SaveStart(_projectFileLocation.
LocationString
);
1556
MSBuildEventSource.Log.SaveStop(_projectFileLocation.
LocationString
);
Definition\ToolsetConfigurationReader.cs (3)
97
location.
LocationString
);
142
InvalidToolsetDefinitionException.Throw(ex, "ConfigFileReadError", ElementLocation.Create(ex.Source, ex.Line, 0).
LocationString
, ex.BareMessage);
172
InvalidToolsetDefinitionException.Throw("InvalidToolsetValueInConfigFileValue", location.
LocationString
);
ElementLocation\ElementLocation.cs (1)
133
return
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)
119
string locations = project.Xml.Location.
LocationString
+ "\r\n";
133
values.ForEach(value => attributeLocations.Add(value.Key + ":" + value.Value.
LocationString
));
141
locations += value.
LocationString
+ "\r\n";
Microsoft.Build.Engine.UnitTests (2)
Construction\ElementLocation_Tests.cs (1)
440
locations += ((XmlNode)node).Name + "==" + ((XmlNode)node).Value ?? String.Empty + ": " + value.
LocationString
+ "\r\n";
Construction\SolutionFilter_Tests.cs (1)
135
graphFromSolution.ProjectNodes.Single().ProjectInstance.ProjectFileLocation.
LocationString
.ShouldBe(simpleProject.Path);