Suppose I have a solution with 3 projects:
Some of the NuGet packages I use will apply to all 3 projects. Some w
In Package Manager Console you can write the following command:
Get-Project -all | ForEach-Object {Get-Package -ProjectName $_.Name -filter
PACKAGE_NAME} | where-object { $_.id -eq 'PACKAGE_NAME' } | Install-Package
PACKAGE_NAME -Version VERSION
You can use that command for install or update as well (Update-Package)