8 references to PathInternal
PresentationBuildTasks (8)
MS\Internal\MarkupCompiler\PathInternal.cs (8)
31
if (
PathInternal
.IsEffectivelyEmpty(relativeTo.AsSpan()))
37
if (
PathInternal
.IsEffectivelyEmpty(path.AsSpan()))
46
if (!
PathInternal
.AreRootsEqual(relativeTo, path, comparisonType))
49
int commonLength =
PathInternal
.GetCommonPathLength(relativeTo, path, ignoreCase: comparisonType == StringComparison.OrdinalIgnoreCase);
87
if (
PathInternal
.IsDirectorySeparator(relativeTo[i]))
94
else if (
PathInternal
.IsDirectorySeparator(path[commonLength]))
339
=> path.Length > 0 &&
PathInternal
.IsDirectorySeparator(path[path.Length - 1]);
345
=> path != null && path.Length > 0 &&
PathInternal
.IsDirectorySeparator(path[path.Length - 1]);