16 references to CombinePathsUnchecked
Microsoft.CodeAnalysis.Workspaces (11)
FileUtilities.cs (6)
59combinedPath = PathUtilities.CombinePathsUnchecked(baseDirectory, path); 70combinedPath = PathUtilities.CombinePathsUnchecked(searchPath, path); 122return PathUtilities.CombinePathsUnchecked(baseDirectory, path); 139return PathUtilities.CombinePathsUnchecked(baseDirectory, path); 150return PathUtilities.CombinePathsUnchecked(baseDirectory, path); 174return PathUtilities.CombinePathsUnchecked(baseRoot, path.Substring(1));
PathUtilities.cs (3)
432return CombinePathsUnchecked(root, relativePath); 473return IsAbsolute(path) ? path : CombinePathsUnchecked(root, path); 593relativePath = CombinePathsUnchecked(relativePath, fullPathParts[i]);
Workspace\Solution\ProjectState.cs (2)
289var sourceFilePath = PathUtilities.CombinePathsUnchecked(projectDirectory, "\0" + extension); 378return PathUtilities.CombinePathsUnchecked(directory, documentState.Name);
Microsoft.VisualStudio.LanguageServices.VisualBasic (5)
ProjectSystemShim\TempPECompiler.TempPEProject.vb (1)
201_outputPath = PathUtilities.CombinePathsUnchecked(pCompilerOptions.wszOutputPath, pCompilerOptions.wszExeName)
ProjectSystemShim\VisualBasicProject.OptionsProcessor.vb (4)
158runtimes.Add(PathUtilities.CombinePathsUnchecked(sdkPath, "Microsoft.VisualBasic.dll")) 169Dim runtimePath = PathUtilities.CombinePathsUnchecked(sdkPath, compilerOptions.wszSpecifiedVBRuntime) 180runtimes.Add(PathUtilities.CombinePathsUnchecked(sdkPath, "System.dll")) 183runtimes.Add(PathUtilities.CombinePathsUnchecked(sdkPath, "mscorlib.dll"))