2 implementations of UninstallAsync
Microsoft.TemplateEngine.Edge (2)
Installers\Folder\FolderInstaller.cs (1)
86
public Task<UninstallResult>
UninstallAsync
(IManagedTemplatePackage templatePackage, IManagedTemplatePackageProvider provider, CancellationToken cancellationToken)
Installers\NuGet\NuGetInstaller.cs (1)
334
public Task<UninstallResult>
UninstallAsync
(IManagedTemplatePackage templatePackage, IManagedTemplatePackageProvider provider, CancellationToken cancellationToken)
3 references to UninstallAsync
Microsoft.TemplateEngine.Abstractions (1)
Installer\UninstallResult.cs (1)
9
/// Represents the result of template package uninstallation using <see cref="IInstaller.
UninstallAsync
"/>.
Microsoft.TemplateEngine.Edge (2)
BuiltInManagedProvider\GlobalSettingsTemplatePackageProvider.cs (2)
172
UninstallResult result = await package.Installer.
UninstallAsync
(package, this, cancellationToken).ConfigureAwait(false);
283
UninstallResult uninstallResult = await installer.
UninstallAsync
(packageToBeUpdated, this, cancellationToken).ConfigureAwait(false);