Skip to content

Instantly share code, notes, and snippets.

@faisalmansoor
Last active November 3, 2015 02:31
Show Gist options
  • Save faisalmansoor/9030ebd6c181a5639cc3 to your computer and use it in GitHub Desktop.
Save faisalmansoor/9030ebd6c181a5639cc3 to your computer and use it in GitHub Desktop.
PowerShell recepies

List all Packages with Projects

Get-Project -all 
| %  { Get-Package -ProjectName $_.Name } 
| select Id, Version, ProjectName 
| Sort-Object Id 
| Format-Table -Wrap -AutoSize
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment