2 implementations of IMountPointFactory
Microsoft.TemplateEngine.Edge (2)
Mount\Archive\ZipFileMountPointFactory.cs (1)
11
public sealed class ZipFileMountPointFactory :
IMountPointFactory
Mount\FileSystem\FileSystemMountPointFactory.cs (1)
9
public sealed class FileSystemMountPointFactory :
IMountPointFactory
13 references to IMountPointFactory
Microsoft.TemplateEngine.Cli (2)
Commands\BaseCommand.cs (2)
210
TabularOutput<
IMountPointFactory
> mountPointsFormatter =
214
environmentSettings.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)
17
bool
IMountPointFactory
.TryMount(IEngineEnvironmentSettings environmentSettings, IMountPoint? parent, string mountPointUri, out IMountPoint? mountPoint)
Mount\FileSystem\FileSystemMountPointFactory.cs (1)
15
bool
IMountPointFactory
.TryMount(IEngineEnvironmentSettings environmentSettings, IMountPoint? parent, string mountPointUri, out IMountPoint? mountPoint)
Settings\Scanner.cs (2)
108
foreach (
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"/>.
21
foreach (
var
factory in engineEnvironment.Components.OfType<
IMountPointFactory
>())