17 references to FilePath
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\ProjectExtensions.cs (1)
90var solutionOrProjectFilePath = project.Solution?.FilePath ?? project.FilePath;
Microsoft.CodeAnalysis.Features (4)
CodeFixes\Configuration\ConfigurationUpdater.cs (1)
294if (_project.Solution?.FilePath == null)
EditAndContinue\EditSession.cs (1)
812Log.Write($"Found {updateId.SessionId} potentially changed document(s) in project {updateId.Ordinal} '{solution.FilePath}'");
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingSolutionCrawlerLogger.cs (2)
224if (solution != null && solution.FilePath != null) 226return solution.FilePath.ToLowerInvariant().GetHashCode();
Microsoft.CodeAnalysis.LanguageServer (3)
LanguageServer\Handler\DebugConfiguration\WorkspaceDebugConfigurationHandler.cs (1)
50return new ProjectDebugConfiguration(project.FilePath!, project.OutputFilePath!, GetProjectName(project), targetsDotnetCore, isExe, project.Solution.FilePath);
LanguageServer\Handler\Restore\RestoreHandler.cs (2)
95if (solution.FilePath != null) 97return [solution.FilePath];
Microsoft.CodeAnalysis.Remote.ServiceHub (4)
Host\RemoteWorkspace.cs (3)
230return currentSolution.Id == newSolutionInfo.Id && currentSolution.FilePath == newSolutionInfo.FilePath; 315=> oldSolution.Id != newSolution.Id || oldSolution.FilePath != newSolution.FilePath;
Host\RemoteWorkspace.SolutionCreator.cs (1)
58Contract.ThrowIfFalse(solution.Id == newSolutionInfo.Id && solution.FilePath == newSolutionInfo.FilePath);
Microsoft.CodeAnalysis.Workspaces (2)
Diagnostics\DiagnosticData.cs (1)
191location: new DiagnosticDataLocation(new FileLinePositionSpan(project.FilePath ?? project.Solution.FilePath ?? "", span: default)),
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\ProjectExtensions.cs (1)
90var solutionOrProjectFilePath = project.Solution?.FilePath ?? project.FilePath;
Microsoft.VisualStudio.LanguageServices (3)
ProjectSystem\VisualStudioWorkspaceImpl.cs (2)
916if (CurrentSolution.FilePath is null || documentInfo.FilePath is null) 925var solutionDirectory = PathUtilities.GetDirectoryName(this.CurrentSolution.FilePath);
UnusedReferences\Dialog\UnusedReferencesTableProvider.DataSource.cs (1)
35var solutionName = Path.GetFileName(solution.FilePath);