2 implementations of MountPointUri
Microsoft.TemplateEngine.Edge (2)
Mount\Archive\ZipFileMountPoint.cs (1)
31public string MountPointUri { get; }
Mount\FileSystem\FileSystemMountPoint.cs (1)
34public string MountPointUri { get; }
4 references to MountPointUri
Microsoft.TemplateEngine.Edge (1)
Settings\Scanner.cs (1)
243_logger.LogDebug("Scanning mount point '{0}' by generator '{1}': found {2} templates", source.MountPoint.MountPointUri, generator.Id, templateList.Count);
Microsoft.TemplateEngine.Utils (3)
IFileSystemInfoExtensions.cs (3)
23if (fileSystemInfo.MountPoint.EnvironmentSettings.Host.FileSystem.DirectoryExists(fileSystemInfo.MountPoint.MountPointUri)) 26result = Path.Combine(fileSystemInfo.MountPoint.MountPointUri, fileSystemInfo.FullPath.Trim('/', '\\')); 31result = $"{fileSystemInfo.MountPoint.MountPointUri}({fileSystemInfo.FullPath})";