8 references to PathInternal
PresentationBuildTasks (8)
MS\Internal\MarkupCompiler\PathInternal.cs (8)
32
if (
PathInternal
.IsEffectivelyEmpty(relativeTo.AsSpan()))
38
if (
PathInternal
.IsEffectivelyEmpty(path.AsSpan()))
47
if (!
PathInternal
.AreRootsEqual(relativeTo, path, comparisonType))
50
int commonLength =
PathInternal
.GetCommonPathLength(relativeTo, path, ignoreCase: comparisonType == StringComparison.OrdinalIgnoreCase);
88
if (
PathInternal
.IsDirectorySeparator(relativeTo[i]))
95
else if (
PathInternal
.IsDirectorySeparator(path[commonLength]))
340
=> path.Length > 0 &&
PathInternal
.IsDirectorySeparator(path[path.Length - 1]);
346
=> path != null && path.Length > 0 &&
PathInternal
.IsDirectorySeparator(path[path.Length - 1]);