2 implementations of CanInstallAsync
Microsoft.TemplateEngine.Edge (2)
Installers\Folder\FolderInstaller.cs (1)
22public Task<bool> CanInstallAsync(InstallRequest installationRequest, CancellationToken cancellationToken)
Installers\NuGet\NuGetInstaller.cs (1)
63public Task<bool> CanInstallAsync(InstallRequest installationRequest, CancellationToken cancellationToken)
3 references to CanInstallAsync
Microsoft.TemplateEngine.Abstractions (2)
Installer\InstallRequest.cs (1)
33/// This can be null, but if multiple installers return <c>true</c> from <see cref="IInstaller.CanInstallAsync"/>
TemplatePackage\IManagedTemplatePackageProvider.cs (1)
43/// All <see cref="IInstaller"/>s are considered via <see cref="IInstaller.CanInstallAsync(InstallRequest, CancellationToken)"/> and if only 1 <see cref="IInstaller"/>
Microsoft.TemplateEngine.Edge (1)
BuiltInManagedProvider\GlobalSettingsTemplatePackageProvider.cs (1)
130if (await install.CanInstallAsync(installRequest, cancellationToken).ConfigureAwait(false))