23 references to FullPath
Microsoft.Build (17)
BackEnd\Shared\ConfigurationMetadata.cs (1)
47
_projectFullPath = FileUtilities.NormalizePath(project.
FullPath
);
Definition\ProjectCollection.cs (11)
1419
if (_hostServices != null && _loadedProjects.GetMatchingProjectsIfAny(project.
FullPath
).Count == 0)
1421
_hostServices.UnregisterProject(project.
FullPath
);
1455
ErrorUtilities.ThrowInvalidOperation("OM_ProjectXmlCannotBeUnloadedDueToLoadedProjects", projectRootElement.FullPath, conflictingProject.
FullPath
);
1476
_hostServices?.UnregisterProject(project.
FullPath
);
1632
if (project.
FullPath
== null)
1655
HostServices.OnRenameProject(oldFullPathIfAny, project.
FullPath
);
1675
if (project.
FullPath
== null)
2008
if (!_loadedProjects.TryGetValue(project.
FullPath
, out List<Project> projectList))
2011
_loadedProjects.Add(project.
FullPath
, projectList);
2018
ErrorUtilities.ThrowInvalidOperation("OM_MatchingProjectAlreadyInCollection", existing.
FullPath
);
2033
return RemoveProject(project.
FullPath
, project);
Evaluation\Preprocessor.cs (3)
101
_filePaths.Push(_project.
FullPath
);
103
if (!String.IsNullOrEmpty(_project.
FullPath
)) // Ignore in-memory projects
105
destinationDocument.AppendChild(destinationDocument.CreateComment($"\r\n{Equals140}\r\n{_project.
FullPath
.Replace("--", "__")}\r\n{Equals140}\r\n"));
Instance\ProjectInstance.cs (2)
380
var projectPath = project.
FullPath
;
433
var projectPath = linkedProject.
FullPath
;
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
MSBuild\ProjectFile\ProjectFile.cs (1)
29
=> project?.
FullPath
?? string.Empty;
NuGet.CommandLine.XPlat (5)
Commands\Why\WhyCommandRunner.cs (2)
122
project.
FullPath
);
133
project.
FullPath
);
Utility\MSBuildAPIUtility.cs (3)
186
project.Project.
FullPath
,
421
Debug.Assert(directoryBuildPropsRootElement.ContainingProject.FullPath != project.
FullPath
);
830
throw new InvalidOperationException(string.Format(CultureInfo.CurrentCulture, Strings.ListPkg_ErrorReadingReferenceFromProject, project.
FullPath
));