Suppose I have a solution with 3 projects:
Some of the NuGet packages I use will apply to all 3 projects. Some w
This sweet deal works for me:
PM> Get-Project -all | where {$_.Name -match "Songhay.Silverlight" -and $_.Name -notmatch "ApplicationLoader" -and $_.Name -notmatch ".Xml"} | ForEach-Object {Install-Package MvvmLight -project $_.Name}