8 references to FilePath
Microsoft.CodeAnalysis.Workspaces (5)
Workspace\Solution\ProjectInfo.cs (2)
406=> nameof(ProjectInfo) + " " + Name + (!string.IsNullOrWhiteSpace(FilePath) ? " " + FilePath : "");
Workspace\Solution\ProjectState.cs (3)
368if (!PathUtilities.IsAbsolute(ProjectInfo.FilePath)) 379var projectDirectory = PathUtilities.GetDirectoryName(ProjectInfo.FilePath); 637public string? FilePath => this.ProjectInfo.FilePath;
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\ProjectMap.cs (1)
101var projectFilePath = projectInfo.FilePath;
Microsoft.CodeAnalysis.Workspaces.UnitTests (2)
SolutionTests\ProjectInfoTests.cs (1)
190SolutionTestHelpers.TestProperty(instance, (old, value) => old.WithFilePath(value), opt => opt.FilePath, "New");
SolutionTests\SolutionTests.cs (1)
1214Assert.Equal(newInfo.FilePath, newProject.FilePath);