NuGet.PackageManager.ExecuteInstall C# (CSharp) Méthode

ExecuteInstall() protected méthode

protected ExecuteInstall ( IPackage package ) : void
package IPackage
Résultat void
        protected void ExecuteInstall(IPackage package)
        {
            PackageOperationEventArgs args = CreateOperation(package);
            OnInstalling(args);

            if (args.Cancel)
            {
                return;
            }

            ExpandFiles(package);

            LocalRepository.AddPackage(package);

            Logger.Log(MessageLevel.Info, NuGetResources.Log_PackageInstalledSuccessfully, package.GetFullName());

            OnInstalled(args);
        }