5 references to IsChildPath
Microsoft.CodeAnalysis.Features (1)
src\Analyzers\Core\Analyzers\MatchFolderAndNamespace\AbstractMatchFolderAndNamespaceDiagnosticAnalyzer.cs (1)
141if (!PathUtilities.IsChildPath(projectDir, namespaceDeclaration.SyntaxTree.FilePath))
Microsoft.CodeAnalysis.Workspaces (2)
src\Compilers\Core\Portable\FileSystem\PathUtilities.cs (1)
550if (IsChildPath(directory, fullPath))
Workspace\CommandLineProject.cs (1)
156var isWithinProject = PathUtilities.IsChildPath(projectDirectory, absolutePath);
Microsoft.CodeAnalysis.Workspaces.MSBuild (2)
MSBuild\MSBuildWorkspace.cs (2)
549return GlobalAssemblyCacheLocation.RootLocations.Any(static (gloc, filePath) => PathUtilities.IsChildPath(gloc, filePath), filePath); 569return PathUtilities.IsChildPath(FrameworkRoot, filePath);