15 references to AbsolutePath
dotnet (1)
Commands\Test\MTP\MSBuildUtility.cs (1)
64
.Select(p => (p.ProjectConfigurations[solutionConfiguration.FullName], p.
AbsolutePath
))
Microsoft.Build (11)
Construction\Solution\ProjectInSolution.cs (1)
314
FileStream fs = File.OpenRead(
AbsolutePath
);
Construction\Solution\SolutionProjectGenerator.cs (6)
277
xw.WriteAttributeString("AbsolutePath", project.
AbsolutePath
);
1122
item = projectInstance.AddItem("ProjectReference", EscapingUtilities.Escape(projectToAdd.
AbsolutePath
), null);
1360
baseName = project.
AbsolutePath
;
1417
AddProjectBuildTask(traversalProject, projectConfiguration, target, targetName, EscapingUtilities.Escape(project.
AbsolutePath
), String.Empty, outputItem);
2118
AddProjectBuildTask(traversalProject, projectConfiguration, targetElement, targetToBuild, "@(ProjectReference)", $"'%(ProjectReference.Identity)' == '{EscapingUtilities.Escape(project.
AbsolutePath
)}'", outputItemName);
2213
Project msbuildProject = new Project(project.
AbsolutePath
, _globalProperties, childProjectToolsVersion);
Graph\GraphBuilder.cs (3)
346
newEntryPoints.Add(new ProjectGraphEntryPoint(project.
AbsolutePath
, projectGlobalProperties));
370
solutionDependenciesForProject.Add(dependencyProject.
AbsolutePath
);
376
solutionDependencies.Add(project.
AbsolutePath
, solutionDependenciesForProject);
Graph\ProjectGraph.cs (1)
691
ProjectGraphNode GetNodeForProject(ProjectInSolution project) => EntryPointNodes.First(node => string.Equals(node.ProjectInstance.FullPath, project.
AbsolutePath
));
NuGet.Build.Tasks.Console (1)
MSBuildStaticGraphRestore.cs (1)
727
return projectsKnownToMSBuild.Select(i => new ProjectGraphEntryPoint(i.
AbsolutePath
, globalProperties)).ToList();
NuGet.CommandLine.XPlat (2)
Utility\MSBuildAPIUtility.cs (2)
99
return sln.ProjectsInOrder.Select(p => p.
AbsolutePath
);
110
projects.Add(project.
AbsolutePath
);