1 implementation of Name
Microsoft.TemplateEngine.Edge (1)
Mount\FileSystemInfoBase.cs (1)
62public string Name { get; }
6 references to Name
Microsoft.TemplateEngine.Edge (2)
Mount\Archive\ZipFileDirectory.cs (1)
26return _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\ZipFileMountPoint.cs (1)
67universe[path] = parentDirEntry = new ZipFileDirectory(this, file.FullPath, file.Name);
Microsoft.TemplateEngine.Utils (4)
FileSystemInfoExtensions.cs (4)
16using Stream f = source.MountPoint.EnvironmentSettings.Host.FileSystem.CreateFile(Path.Combine(target, file.Name)); 24dir.CopyTo(Path.Combine(target, dir.Name)); 87List<string> segments = new List<string> { info.Name }; 97segments.Insert(0, current.Name);