6 references to Universe
Microsoft.TemplateEngine.Edge (6)
Mount\Archive\ZipFileDirectory.cs (2)
19
public override bool Exists => _mountPoint.
Universe
.ContainsKey(FullPath);
26
return _mountPoint.
Universe
.Values.Where(x => x.FullPath.StartsWith(FullPath, StringComparison.Ordinal) && x.FullPath.Length != FullPath.Length && r.IsMatch(x.Name)).Where(x => searchOption == SearchOption.AllDirectories || x.FullPath.TrimEnd('/').Count(y => y == '/') == FullPath.Count(y => y == '/'));
Mount\Archive\ZipFileFile.cs (2)
21
public override bool Exists => _entry != null || (_mountPoint.
Universe
.TryGetValue(FullPath, out var info) && info.Kind == FileSystemInfoKind.File);
27
if (!_mountPoint.
Universe
.TryGetValue(FullPath, out var info) || info.Kind != FileSystemInfoKind.File || !info.Exists)
Mount\Archive\ZipFileMountPoint.cs (2)
97
if (
Universe
.TryGetValue(path, out IFileSystemInfo info))
101
else if (
Universe
.TryGetValue(path + "/", out info))