7 references to FilePath
Microsoft.CodeAnalysis.Workspaces (5)
Workspace\Solution\ProjectInfo.cs (2)
396=> nameof(ProjectInfo) + " " + Name + (!string.IsNullOrWhiteSpace(FilePath) ? " " + FilePath : "");
Workspace\Solution\ProjectState.cs (3)
275if (!PathUtilities.IsAbsolute(_projectInfo.FilePath)) 286var projectDirectory = PathUtilities.GetDirectoryName(_projectInfo.FilePath); 535public string? FilePath => this.ProjectInfo.FilePath;
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\ProjectMap.cs (1)
102var projectFilePath = projectInfo.FilePath;
Microsoft.CodeAnalysis.Workspaces.UnitTests (1)
SolutionTests\ProjectInfoTests.cs (1)
188SolutionTestHelpers.TestProperty(instance, (old, value) => old.WithFilePath(value), opt => opt.FilePath, "New");