6 references to GetProjectsThatTransitivelyDependOnThisProject
Microsoft.CodeAnalysis.Features (1)
AddImport\AbstractAddImportFeatureService.cs (1)
467
var projectsThatTransitivelyDependOnThisProject = dependencyGraph.
GetProjectsThatTransitivelyDependOnThisProject
(project.Id);
Microsoft.CodeAnalysis.Workspaces (5)
FindSymbols\FindReferences\DependentTypeFinder.cs (1)
444
return dependencyGraph.
GetProjectsThatTransitivelyDependOnThisProject
(project.Id)
Workspace\Solution\ProjectDependencyGraph.cs (1)
577
return
GetProjectsThatTransitivelyDependOnThisProject
(potentialDependency).Contains(id);
Workspace\Solution\SolutionCompilationState.cs (2)
336
dependentProjects.AddRange(newDependencyGraph.
GetProjectsThatTransitivelyDependOnThisProject
(projectInfo.Id));
385
foreach (var dependentProject in originalDependencyGraph.
GetProjectsThatTransitivelyDependOnThisProject
(projectId))
Workspace\Workspace_SourceGeneration.cs (1)
127
foreach (var transitiveProjectId in dependencyGraph.
GetProjectsThatTransitivelyDependOnThisProject
(projectId))