Skip to content

A small project that makes updating nuget packages easy. Works with AzureDevOps & Github

Notifications You must be signed in to change notification settings

pallar-ms/nugetpackageupdate

 
 

Repository files navigation

Nuget Package Update lib

This library is designed to be used via nuget and can easily be run in a Console app or Azure Function.

var nugetApi = new NugetApi(
                new Uri("https://<org>.pkgs.visualstudio.com/_packaging/<feedguid>/nuget/v3/registrations2/"),
                new AuthenticationHeaderValue("Basic", "<token>"),
                Console.Out);

var manager = new UpdateManager(new[] { nugetApi }, Console.Out);

// Add your own grouping conventions (defaults are provided)
manager.PackageGroupings.Add(new UniqueNameAndVersionPackageGroup("MyCompany", x => x.StartsWith("MyCompany.Packages")));

// List package names that can be beta version, or * for all
manager.AllowBetaPackages.Add("*");

// Delay taking major version updates for this many days
manager.PackagesMustBePublishedForThisManyDays = 21;

var devops = new AzureDevOps("<devopsToken>", "MyCompany", "MyProject", "my-repo", Console.Out);

// Find all project files, get all package updates, create prs with defined groups, go:
manager.CreatePullRequestsAsync(
        devops,
        reviewers: null,
        prLimit: 5)
    .Wait();

Install:

Install-Package NugetPackageUpdates

https://www.nuget.org/packages/NugetPackageUpdates/

About

A small project that makes updating nuget packages easy. Works with AzureDevOps & Github

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%