1 implementation of Exists
Microsoft.TemplateEngine.Edge (1)
Mount\FileSystemInfoBase.cs (1)
20public abstract bool Exists { get; }
10 references to Exists
Microsoft.TemplateEngine.Cli (1)
HostSpecificDataLoader.cs (1)
67if (file != null && file.Exists)
Microsoft.TemplateEngine.Edge (5)
Mount\Archive\ZipFileFile.cs (1)
27if (!_mountPoint.Universe.TryGetValue(FullPath, out var info) || info.Kind != FileSystemInfoKind.File || !info.Exists)
Mount\Archive\ZipFileMountPoint.cs (1)
113if (file != null && file.Exists)
Mount\Archive\ZipFileMountPointFactory.cs (1)
55if (file == null || !file.Exists)
Mount\FileSystemInfoBase.cs (1)
58return (_parent?.Exists ?? false) ? _parent : null;
Settings\TemplateCache.cs (1)
228if (hostFile == null || !hostFile.Exists)
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (4)
RunnableProjectConfig.cs (1)
267|| (!sourceFile?.Parent?.FileInfo(singleConfig)?.Exists ?? true))
ScannedTemplateInfo.cs (1)
65if (localizeFolder == null || !localizeFolder.Exists)
Validation\MandatoryValidationFactory.cs (2)
130if (file?.Exists ?? false) 141else if (!sourceRoot.Exists)