Skip to content

Instantly share code, notes, and snippets.

@codeimpossible
Last active August 29, 2015 14:26
Show Gist options
  • Save codeimpossible/6471847bfabbe85980b3 to your computer and use it in GitHub Desktop.
Save codeimpossible/6471847bfabbe85980b3 to your computer and use it in GitHub Desktop.
PowerShell Commands
# needs to be run in Package Manager Console
# i made this multiple lines for readability,
# you might need to compact it to one to run it
Get-Project -All | ForEach-Object {
Write-Host "";
Write-Host $_.ProjectName;
Write-Host "------------";
Get-Package -ProjectName $_.ProjectName -Filter <PACKAGE_NAME> | ForEach-Object {
Write-Host ($_.Id, $_.Version) -Separator " "
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment