13 references to CombinePathsUnchecked
Microsoft.CodeAnalysis (10)
FileSystem\FileUtilities.cs (6)
61combinedPath = PathUtilities.CombinePathsUnchecked(baseDirectory, path); 72combinedPath = PathUtilities.CombinePathsUnchecked(searchPath, path); 124return PathUtilities.CombinePathsUnchecked(baseDirectory, path); 141return PathUtilities.CombinePathsUnchecked(baseDirectory, path); 152return PathUtilities.CombinePathsUnchecked(baseDirectory, path); 176return PathUtilities.CombinePathsUnchecked(baseRoot, path.Substring(1));
FileSystem\PathUtilities.cs (3)
433return CombinePathsUnchecked(root, relativePath); 474return IsAbsolute(path) ? path : CombinePathsUnchecked(root, path); 595relativePath = CombinePathsUnchecked(relativePath, fullPathParts[i]);
RuleSet\RuleSetInclude.cs (1)
120includePath = PathUtilities.CombinePathsUnchecked(Path.GetDirectoryName(parentRulesetPath) ?? "", includePath);
Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests (1)
CommandLineRunnerTests.cs (1)
484var scriptPath = PathUtilities.CombinePathsUnchecked(PathUtilities.GetFileName(directory.Path), scriptName);
Microsoft.CodeAnalysis.Scripting (1)
Hosting\Resolvers\RuntimeMetadataReferenceResolver.cs (1)
122string 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);