Examples of Nupkg


Examples of ru.aristar.jnuget.files.Nupkg

    @Override
    public void doAction(Nupkg nupkg, PackageSource<? extends Nupkg> packageSource) throws NugetPushException {
        Collection<? extends Nupkg> nupkgs = packageSource.getPackages(nupkg.getId());
        List<? extends Nupkg> sortedNupkgs = toSortedList(nupkgs);
        while (sortedNupkgs.size() > getMaxPackageCount()) {
            Nupkg pkg = sortedNupkgs.get(sortedNupkgs.size() - 1);
            packageSource.removePackage(pkg);
            sortedNupkgs = sortedNupkgs.subList(0, sortedNupkgs.size() - 1);
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.