26 references to FullPath
dotnet-openapi (2)
Commands\BaseCommand.cs (2)
160
Warning.Write($"One or more references to {sourceFile} already exist in '{project.
FullPath
}'. Duplicate references could lead to unexpected behavior.");
169
Warning.Write($"A reference to '{sourceUrl}' already exists in '{project.
FullPath
}'.");
Microsoft.Build (17)
BackEnd\Shared\ConfigurationMetadata.cs (1)
47
_projectFullPath = FileUtilities.NormalizePath(project.
FullPath
);
Definition\ProjectCollection.cs (11)
1441
if (_hostServices != null && _loadedProjects.GetMatchingProjectsIfAny(project.
FullPath
).Count == 0)
1443
_hostServices.UnregisterProject(project.
FullPath
);
1477
ErrorUtilities.ThrowInvalidOperation("OM_ProjectXmlCannotBeUnloadedDueToLoadedProjects", projectRootElement.FullPath, conflictingProject.
FullPath
);
1498
_hostServices?.UnregisterProject(project.
FullPath
);
1654
if (project.
FullPath
== null)
1677
HostServices.OnRenameProject(oldFullPathIfAny, project.
FullPath
);
1697
if (project.
FullPath
== null)
2030
if (!_loadedProjects.TryGetValue(project.
FullPath
, out List<Project> projectList))
2033
_loadedProjects.Add(project.
FullPath
, projectList);
2040
ErrorUtilities.ThrowInvalidOperation("OM_MatchingProjectAlreadyInCollection", existing.
FullPath
);
2055
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 (2)
MSBuild\ProjectFile\ProjectFile.cs (1)
29
=> project?.
FullPath
?? string.Empty;
MSBuild\ProjectFile\ProjectInstanceReader.cs (1)
39
_projectFullPath = Project?.
FullPath
?? _projectInstance.FullPath;
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
));