8 references to PathInternal
PresentationBuildTasks (8)
MS\Internal\MarkupCompiler\PathInternal.cs (8)
53if (PathInternal.IsEffectivelyEmpty(relativeTo.AsSpan())) 59if (PathInternal.IsEffectivelyEmpty(path.AsSpan())) 68if (!PathInternal.AreRootsEqual(relativeTo, path, comparisonType)) 71int commonLength = PathInternal.GetCommonPathLength(relativeTo, path, ignoreCase: comparisonType == StringComparison.OrdinalIgnoreCase); 109if (PathInternal.IsDirectorySeparator(relativeTo[i])) 116else if (PathInternal.IsDirectorySeparator(path[commonLength])) 361=> path.Length > 0 && PathInternal.IsDirectorySeparator(path[path.Length - 1]); 367=> path != null && path.Length > 0 && PathInternal.IsDirectorySeparator(path[path.Length - 1]);