File: AddPackage\InstallPackageDirectlyCodeAction.cs
Web Access
Project: src\src\Features\Core\Portable\Microsoft.CodeAnalysis.Features.csproj (Microsoft.CodeAnalysis.Features)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
#nullable disable
 
using System;
using System.Collections.Immutable;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.CodeActions;
using Microsoft.CodeAnalysis.Packaging;
 
namespace Microsoft.CodeAnalysis.AddPackage;
 
internal sealed class InstallPackageDirectlyCodeAction(
    IPackageInstallerService installerService,
    Document document,
    string source,
    string packageName,
    string versionOpt,
    bool includePrerelease,
    bool isLocal) : CodeAction
{
    private readonly CodeActionOperation _installPackageOperation = new InstallPackageDirectlyCodeActionOperation(
            installerService, document, source, packageName,
            versionOpt, includePrerelease, isLocal);
 
    public override string Title { get; } = versionOpt == null
            ? FeaturesResources.Find_and_install_latest_version
            : isLocal
                ? string.Format(FeaturesResources.Use_local_version_0, versionOpt)
                : string.Format(FeaturesResources.Install_version_0, versionOpt);
 
    protected override Task<ImmutableArray<CodeActionOperation>> ComputeOperationsAsync(IProgress<CodeAnalysisProgress> progress, CancellationToken cancellationToken)
        => Task.FromResult(ImmutableArray.Create(_installPackageOperation));
}