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