2 implementations of IMountPointFactory
Microsoft.TemplateEngine.Edge (2)
Mount\Archive\ZipFileMountPointFactory.cs (1)
11public sealed class ZipFileMountPointFactory : IMountPointFactory
Mount\FileSystem\FileSystemMountPointFactory.cs (1)
9public sealed class FileSystemMountPointFactory : IMountPointFactory
13 references to IMountPointFactory
Microsoft.TemplateEngine.Cli (2)
Commands\BaseCommand.cs (2)
210TabularOutput<IMountPointFactory> mountPointsFormatter = 214environmentSettings.Components.OfType<IMountPointFactory>())
Microsoft.TemplateEngine.Edge (8)
Components.cs (4)
24(typeof(IMountPointFactory), new ZipFileMountPointFactory()), 25(typeof(IMountPointFactory), new FileSystemMountPointFactory()), 40(typeof(IMountPointFactory), new ZipFileMountPointFactory()), 41(typeof(IMountPointFactory), new FileSystemMountPointFactory()),
Mount\Archive\ZipFileMountPointFactory.cs (1)
17bool IMountPointFactory.TryMount(IEngineEnvironmentSettings environmentSettings, IMountPoint? parent, string mountPointUri, out IMountPoint? mountPoint)
Mount\FileSystem\FileSystemMountPointFactory.cs (1)
15bool IMountPointFactory.TryMount(IEngineEnvironmentSettings environmentSettings, IMountPoint? parent, string mountPointUri, out IMountPoint? mountPoint)
Settings\Scanner.cs (2)
108foreach (IMountPointFactory factory in _environmentSettings.Components.OfType<IMountPointFactory>())
Microsoft.TemplateEngine.Utils (3)
EngineEnvironmentSettingsExtensions.cs (3)
13/// Using all <see cref="IMountPointFactory"/> in <see cref="IEngineEnvironmentSettings.Components"/>. 21foreach (var factory in engineEnvironment.Components.OfType<IMountPointFactory>())