seldary
seldary

Reputation: 6256

How to list all outdated packages in a solution?

My goal is to get notified by a build server whenever new packages are available, but not automatically install them.

I want to generate a list that shows all the nuget packages used in a solution, that are outdated (a newer version was released but not installed yet).

Is there a way to create that list in a script / powershell?

Upvotes: 3

Views: 1779

Answers (1)

seldary
seldary

Reputation: 6256

Get-Package -Updates

See the docs.

Upvotes: 4

Related Questions