6 references to IsChildPath
Microsoft.CodeAnalysis.Features (1)
AbstractMatchFolderAndNamespaceDiagnosticAnalyzer.cs (1)
139if (!PathUtilities.IsChildPath(projectDir, namespaceDeclaration.SyntaxTree.FilePath))
Microsoft.CodeAnalysis.Workspaces (3)
PathUtilities.cs (1)
549if (IsChildPath(directory, fullPath))
Workspace\CommandLineProject.cs (2)
120var isWithinProject = PathUtilities.IsChildPath(projectDirectory, absolutePath); 147var isWithinProject = PathUtilities.IsChildPath(projectDirectory, absolutePath);
Microsoft.CodeAnalysis.Workspaces.MSBuild (2)
MSBuild\ProjectFile\ProjectFile.cs (2)
378return GlobalAssemblyCacheLocation.RootLocations.Any(static (gloc, filePath) => PathUtilities.IsChildPath(gloc, filePath), filePath); 398return PathUtilities.IsChildPath(FrameworkRoot, filePath);