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)
368
if (!PathUtilities.IsAbsolute(ProjectInfo.
FilePath
))
379
var projectDirectory = PathUtilities.GetDirectoryName(ProjectInfo.
FilePath
);
637
public string? FilePath => this.ProjectInfo.
FilePath
;
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\ProjectMap.cs (1)
101
var projectFilePath = projectInfo.
FilePath
;
Microsoft.CodeAnalysis.Workspaces.UnitTests (2)
SolutionTests\ProjectInfoTests.cs (1)
190
SolutionTestHelpers.TestProperty(instance, (old, value) => old.WithFilePath(value), opt => opt.
FilePath
, "New");
SolutionTests\SolutionTests.cs (1)
1214
Assert.Equal(newInfo.
FilePath
, newProject.FilePath);