15 references to AbsolutePath
Microsoft.Build (11)
Construction\Solution\ProjectInSolution.cs (1)
305
FileStream fs = File.OpenRead(
AbsolutePath
);
Construction\Solution\SolutionProjectGenerator.cs (6)
277
xw.WriteAttributeString("AbsolutePath", project.
AbsolutePath
);
1062
item = projectInstance.AddItem("ProjectReference", EscapingUtilities.Escape(projectToAdd.
AbsolutePath
), null);
1290
baseName = project.
AbsolutePath
;
1347
AddProjectBuildTask(traversalProject, projectConfiguration, target, targetName, EscapingUtilities.Escape(project.
AbsolutePath
), String.Empty, outputItem);
2048
AddProjectBuildTask(traversalProject, projectConfiguration, targetElement, targetToBuild, "@(ProjectReference)", "'%(ProjectReference.Identity)' == '" + EscapingUtilities.Escape(project.
AbsolutePath
) + "'", outputItemName);
2143
Project msbuildProject = new Project(project.
AbsolutePath
, _globalProperties, childProjectToolsVersion);
Graph\GraphBuilder.cs (3)
337
newEntryPoints.Add(new ProjectGraphEntryPoint(project.
AbsolutePath
, projectGlobalProperties));
361
solutionDependenciesForProject.Add(dependencyProject.
AbsolutePath
);
367
solutionDependencies.Add(project.
AbsolutePath
, solutionDependenciesForProject);
Graph\ProjectGraph.cs (1)
691
ProjectGraphNode GetNodeForProject(ProjectInSolution project) => EntryPointNodes.First(node => string.Equals(node.ProjectInstance.FullPath, project.
AbsolutePath
));
Microsoft.Build.Engine.UnitTests (2)
Construction\SolutionFile_OldParser_Tests.cs (1)
2429
solution.ProjectsInOrder[0].
AbsolutePath
.ShouldBe(Path.GetFullPath(Path.Combine(Path.GetDirectoryName(solution.FullPath)!, expectedRelativePath)));
Construction\SolutionProjectGenerator_Tests.cs (1)
2757
projectInSolution.
AbsolutePath
.ShouldBe(Path.Combine(solution.SolutionFileDirectory, projectInSolution.RelativePath));
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\MSBuildProjectLoader.cs (1)
209
projectFilter.Contains(project.
AbsolutePath
))
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
BuildHost.cs (1)
154
builder.Add((project.
AbsolutePath
, project.ProjectGuid));