11 references to CombinePathsUnchecked
Microsoft.CodeAnalysis.Workspaces (11)
src\roslyn\src\Compilers\Core\Portable\FileSystem\FileUtilities.cs (6)
64combinedPath = PathUtilities.CombinePathsUnchecked(baseDirectory, path); 75combinedPath = PathUtilities.CombinePathsUnchecked(searchPath, path); 127return PathUtilities.CombinePathsUnchecked(baseDirectory, path); 144return PathUtilities.CombinePathsUnchecked(baseDirectory, path); 155return PathUtilities.CombinePathsUnchecked(baseDirectory, path); 179return PathUtilities.CombinePathsUnchecked(baseRoot, path.Substring(1));
src\roslyn\src\Compilers\Core\Portable\FileSystem\PathUtilities.cs (3)
458return CombinePathsUnchecked(root, relativePath); 499return IsAbsolute(path) ? path : CombinePathsUnchecked(root, path); 620relativePath = CombinePathsUnchecked(relativePath, fullPathParts[i]);
Workspace\Solution\ProjectState.cs (2)
374var sourceFilePath = PathUtilities.CombinePathsUnchecked(projectDirectory, "\0" + extension); 405return PathUtilities.CombinePathsUnchecked(directory, documentState.Name);