2 implementations of MountPointUri
Microsoft.TemplateEngine.Edge (2)
Mount\Archive\ZipFileMountPoint.cs (1)
31
public string
MountPointUri
{ get; }
Mount\FileSystem\FileSystemMountPoint.cs (1)
34
public string
MountPointUri
{ get; }
7 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.Orchestrator.RunnableProjects (3)
DirectoryBasedTemplate.Interfaces.cs (1)
39
string ITemplateLocator.MountPointUri => ConfigFile?.MountPoint.
MountPointUri
?? throw new InvalidOperationException($"{nameof(ConfigFile)} should be set in order to continue");
RunnableProjectConfig.ITemplate.cs (1)
18
string ITemplateLocator.MountPointUri => ConfigFile?.MountPoint.
MountPointUri
?? throw new InvalidOperationException("Configuration file is not initialized, are you using test constructor?");
RunnableProjectGenerator.cs (1)
462
public string MountPointUri => _templateInfo.ConfigFile.MountPoint.
MountPointUri
;
Microsoft.TemplateEngine.Utils (3)
IFileSystemInfoExtensions.cs (3)
23
if (fileSystemInfo.MountPoint.EnvironmentSettings.Host.FileSystem.DirectoryExists(fileSystemInfo.MountPoint.
MountPointUri
))
26
result = Path.Combine(fileSystemInfo.MountPoint.
MountPointUri
, fileSystemInfo.FullPath.Trim('/', '\\'));
31
result = $"{fileSystemInfo.MountPoint.
MountPointUri
}({fileSystemInfo.FullPath})";