2 implementations of FileInfo
Microsoft.TemplateEngine.Edge (2)
Mount\Archive\ZipFileMountPoint.cs (1)
90public IFile FileInfo(string path)
Mount\FileSystem\FileSystemMountPoint.cs (1)
41public IFile FileInfo(string path)
6 references to FileInfo
Microsoft.TemplateEngine.Cli (1)
HostSpecificDataLoader.cs (1)
66file = mountPoint.FileInfo(templateInfo.HostConfigPlace);
Microsoft.TemplateEngine.Edge (1)
Settings\TemplateCache.cs (1)
227IFile? hostFile = mountPoint.FileInfo(path);
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (3)
RunnableProjectGenerator.cs (3)
50configFile = mountPoint.FileInfo(templateLocator.ConfigPlace); 59localeConfig = string.IsNullOrWhiteSpace(extendedTemplateLocator.LocaleConfigPlace) ? null : mountPoint.FileInfo(extendedTemplateLocator.LocaleConfigPlace!); 60hostTemplateConfigFile = string.IsNullOrWhiteSpace(extendedTemplateLocator.HostConfigPlace) ? null : mountPoint.FileInfo(extendedTemplateLocator.HostConfigPlace!);
Microsoft.TemplateEngine.Utils (1)
FileSystemInfoExtensions.cs (1)
50return info.MountPoint.FileInfo(fullPath);