2 implementations of UninstallAsync
Microsoft.TemplateEngine.Edge (2)
Installers\Folder\FolderInstaller.cs (1)
86public Task<UninstallResult> UninstallAsync(IManagedTemplatePackage templatePackage, IManagedTemplatePackageProvider provider, CancellationToken cancellationToken)
Installers\NuGet\NuGetInstaller.cs (1)
334public 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)
172UninstallResult result = await package.Installer.UninstallAsync(package, this, cancellationToken).ConfigureAwait(false); 283UninstallResult uninstallResult = await installer.UninstallAsync(packageToBeUpdated, this, cancellationToken).ConfigureAwait(false);