12 references to CombinePathsUnchecked
Microsoft.CodeAnalysis.Workspaces (12)
src\Compilers\Core\Portable\FileSystem\FileUtilities.cs (6)
60combinedPath = PathUtilities.CombinePathsUnchecked(baseDirectory, path); 71combinedPath = PathUtilities.CombinePathsUnchecked(searchPath, path); 123return PathUtilities.CombinePathsUnchecked(baseDirectory, path); 140return PathUtilities.CombinePathsUnchecked(baseDirectory, path); 151return PathUtilities.CombinePathsUnchecked(baseDirectory, path); 175return PathUtilities.CombinePathsUnchecked(baseRoot, path.Substring(1));
src\Compilers\Core\Portable\FileSystem\PathUtilities.cs (3)
433return CombinePathsUnchecked(root, relativePath); 474return IsAbsolute(path) ? path : CombinePathsUnchecked(root, path); 595relativePath = CombinePathsUnchecked(relativePath, fullPathParts[i]);
Workspace\Solution\ProjectState.cs (3)
357var sourceFilePath = PathUtilities.CombinePathsUnchecked(projectDirectory, "\0" + extension); 424return PathUtilities.CombinePathsUnchecked(directory, documentState.Name); 503return PathUtilities.CombinePathsUnchecked(directory, documentState.Name);