12 references to ProjectFileLocation
Microsoft.Build (8)
BackEnd\BuildManager\BuildManager.cs (1)
1950
ProjectErrorUtilities.VerifyThrowInvalidProject(entryPointNode.ProjectInstance.Targets.Count > 0, entryPointNode.ProjectInstance.
ProjectFileLocation
, "NoTargetSpecified");
BackEnd\Components\RequestBuilder\RequestBuilder.cs (1)
1183
_requestEntry.RequestConfiguration.Project.
ProjectFileLocation
, "NoTargetSpecified");
BackEnd\Components\RequestBuilder\TargetBuilder.cs (1)
156
targets.Add(new TargetSpecification(targetName.name, targetExists ? targetInstance.Location : _projectInstance.
ProjectFileLocation
, targetName.reason));
BackEnd\Components\RequestBuilder\TargetEntry.cs (1)
940
_targetSpecification.ReferenceLocation ?? _requestEntry.RequestConfiguration.Project.
ProjectFileLocation
,
BackEnd\Components\RequestBuilder\TargetUpToDateChecker.cs (2)
1132
ProjectErrorUtilities.VerifyThrowInvalidProject(input.IndexOfAny(Path.GetInvalidPathChars()) == -1, _project.
ProjectFileLocation
, "IllegalCharactersInFileOrDirectory", input, inputItemName);
1133
ProjectErrorUtilities.VerifyThrowInvalidProject(output.IndexOfAny(Path.GetInvalidPathChars()) == -1, _project.
ProjectFileLocation
, "IllegalCharactersInFileOrDirectory", output, outputItemName);
Instance\ProjectInstance.cs (2)
2240
string result = expander.ExpandIntoStringAndUnescape(unexpandedValue, ExpanderOptions.ExpandPropertiesAndItems,
ProjectFileLocation
);
2264
ProjectFileLocation
,
Microsoft.Build.Engine.UnitTests (4)
Construction\SolutionFilter_Tests.cs (1)
135
graphFromSolution.ProjectNodes.Single().ProjectInstance.
ProjectFileLocation
.LocationString.ShouldBe(simpleProject.Path);
Instance\ProjectInstance_Internal_Tests.cs (1)
800
targetInstance.Location.ShouldBe(projectInstance.
ProjectFileLocation
);
TestComparers\ProjectInstanceModelTestComparers.cs (2)
54
Assert.Equal(x.
ProjectFileLocation
, y.
ProjectFileLocation
, new Helpers.ElementLocationComparerIgnoringType());