Implemented interface member:
property
MountPoint
Microsoft.TemplateEngine.Abstractions.Mount.IFileSystemInfo.MountPoint
1 write to MountPoint
Microsoft.TemplateEngine.Edge (1)
Mount\FileSystemInfoBase.cs (1)
17MountPoint = mountPoint;
9 references to MountPoint
Microsoft.TemplateEngine.Edge (9)
Mount\FileSystem\FileSystemDirectory.cs (5)
30if (MountPoint is not FileSystemMountPoint fileSystemMountPoint) 60string baseName = x.Substring(((FileSystemMountPoint)MountPoint).MountPointRootPath.Length).Replace(Path.DirectorySeparatorChar, '/'); 77return new FileSystemDirectory(MountPoint, baseName, _paths.Name(x), x); 85string baseName = x.Substring(((FileSystemMountPoint)MountPoint).MountPointRootPath.Length).Replace(Path.DirectorySeparatorChar, '/'); 97return new FileSystemFile(MountPoint, baseName, _paths.Name(x), x);
Mount\FileSystem\FileSystemFile.cs (2)
18public override bool Exists => MountPoint.EnvironmentSettings.Host.FileSystem.FileExists(_physicalPath); 22return MountPoint.EnvironmentSettings.Host.FileSystem.OpenRead(_physicalPath);
Mount\FileSystemInfoBase.cs (2)
37return MountPoint.Root; 55_parent = MountPoint.DirectoryInfo(parentPath);