18 references to FilePath
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\ProjectExtensions.cs (1)
91var solutionOrProjectFilePath = project.Solution?.FilePath ?? project.FilePath;
Microsoft.CodeAnalysis.Features (4)
CodeFixes\Configuration\ConfigurationUpdater.cs (1)
294if (_project.Solution?.FilePath == null)
EditAndContinue\EditSession.cs (1)
805log.Write("EmitSolutionUpdate {0}.{1}: '{2}'", updateId.SessionId.Ordinal, 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)
231return currentSolution.Id == newSolutionInfo.Id && currentSolution.FilePath == newSolutionInfo.FilePath; 316=> oldSolution.Id != newSolution.Id || oldSolution.FilePath != newSolution.FilePath;
Host\RemoteWorkspace.SolutionCreator.cs (1)
60Contract.ThrowIfFalse(solution.Id == newSolutionInfo.Id && solution.FilePath == newSolutionInfo.FilePath);
Microsoft.CodeAnalysis.Workspaces (2)
Diagnostics\DiagnosticData.cs (1)
191location: new DiagnosticDataLocation(new FileLinePositionSpan(project?.FilePath ?? solution.FilePath ?? "", span: default)),
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\ProjectExtensions.cs (1)
91var solutionOrProjectFilePath = project.Solution?.FilePath ?? project.FilePath;
Microsoft.VisualStudio.LanguageServices (4)
Diagnostics\VisualStudioDiagnosticAnalyzerService.cs (1)
310var projectOrSolutionName = project?.Name ?? PathUtilities.GetFileName(solution.FilePath);
ProjectSystem\VisualStudioWorkspaceImpl.cs (2)
915if (CurrentSolution.FilePath is null || documentInfo.FilePath is null) 924var solutionDirectory = PathUtilities.GetDirectoryName(this.CurrentSolution.FilePath);
UnusedReferences\Dialog\UnusedReferencesTableProvider.DataSource.cs (1)
35var solutionName = Path.GetFileName(solution.FilePath);