Exemple #1
0
 private IEnumerable <string> GetPackageFilePaths()
 {
     return(from p in _repositoryFileSystem.GetFiles(_packageName, "*.*", recursive: true)
            where !PackageUtility.IsManifest(p) && !PackageUtility.IsPackageFile(p)
            select p);
 }
Exemple #2
0
        protected virtual void ExecuteUninstall(IPackage package)
        {
            string packageDirectory        = PathResolver.GetPackageDirectory(package);
            PackageOperationEventArgs args = CreateOperation(package);

            OnUninstalling(args);

            if (args.Cancel)
            {
                return;
            }

            OnRemoveFiles(args);

            // Only remove nupkg and nuspec if the package directory is otherwise empty.
            // The DeleteOnRestartManager will use the nupkg to determine whether files are left in the package directory
            // directory because files were added or modified as opposed to locked.
            if (!FileSystem.GetDirectoriesSafe(packageDirectory).Any() &&
                FileSystem.GetFilesSafe(packageDirectory).All(f => PackageUtility.IsPackageFile(f) || PackageUtility.IsManifest(f)))
            {
                LocalRepository.RemovePackage(package);
            }

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

            OnUninstalled(args);
        }
 public IEnumerable <IPackageFile> GetFiles()
 {
     return(_packageBuilder.Files.Where(p => !PackageUtility.IsManifest(p.Path)));
 }