13 references to CombinePathsUnchecked
Microsoft.CodeAnalysis (10)
FileSystem\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));
FileSystem\PathUtilities.cs (3)
432return CombinePathsUnchecked(root, relativePath); 473return IsAbsolute(path) ? path : CombinePathsUnchecked(root, path); 593relativePath = CombinePathsUnchecked(relativePath, fullPathParts[i]);
RuleSet\RuleSetInclude.cs (1)
120includePath = PathUtilities.CombinePathsUnchecked(Path.GetDirectoryName(parentRulesetPath) ?? "", includePath);
Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests (1)
CommandLineRunnerTests.cs (1)
559var scriptPath = PathUtilities.CombinePathsUnchecked(PathUtilities.GetFileName(directory.Path), scriptName);
Microsoft.CodeAnalysis.Scripting (1)
Hosting\Resolvers\RuntimeMetadataReferenceResolver.cs (1)
125string pathWithoutExtension = PathUtilities.CombinePathsUnchecked(definitionDirectory, referenceIdentity.Name);
Microsoft.CodeAnalysis.UnitTests (1)
Analyzers\AnalyzerFileReferenceTests.cs (1)
58var refBadPath = new AnalyzerFileReference(PathUtilities.CombinePathsUnchecked(TempRoot.Root, "\0<>|*.xyz"), loader);