2 implementations of InstallAsync
Microsoft.TemplateEngine.Edge (2)
Installers\Folder\FolderInstaller.cs (1)
47
public Task<InstallResult>
InstallAsync
(InstallRequest installRequest, IManagedTemplatePackageProvider provider, CancellationToken cancellationToken)
Installers\NuGet\NuGetInstaller.cs (1)
197
public async Task<InstallResult>
InstallAsync
(InstallRequest installRequest, IManagedTemplatePackageProvider provider, CancellationToken cancellationToken)
5 references to InstallAsync
Microsoft.TemplateEngine.Abstractions (4)
Installer\InstallRequest.cs (1)
7
/// The template package installation request to be processed by <see cref="IInstaller.
InstallAsync
"/>.
Installer\InstallResult.cs (2)
9
/// Represents the result of template package installation using <see cref="IInstaller.
InstallAsync
"/>.
28
/// <see cref="InstallRequest"/> processed by <see cref="IInstaller.
InstallAsync
"/> operation.
TemplatePackage\IManagedTemplatePackageProvider.cs (1)
44
/// returns <see langword="true" />. <see cref="IInstaller.
InstallAsync
(InstallRequest, IManagedTemplatePackageProvider, CancellationToken)"/> is executed and result is returned.
Microsoft.TemplateEngine.Edge (1)
BuiltInManagedProvider\GlobalSettingsTemplatePackageProvider.cs (1)
322
InstallResult installResult = await installer.
InstallAsync
(installRequest, this, cancellationToken).ConfigureAwait(false);