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