Last active
June 26, 2017 03:34
-
-
Save rqx110/e2517ec80d091742399925914ee18013 to your computer and use it in GitHub Desktop.
vs中批量更新nuget包
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-Package | Where Id -like "Contoso.*" | Sort-Object -Property Id -Unique | foreach { Update-Package $_.Id } | |
OR | |
ForEach($project in get-project -all) { ForEach($package in Get-Package -ProjectName $project.ProjectName | ?{ $_.Id -like 'Abp*'}) { Update-Package -ProjectName $project.ProjectName -Id $package.Id;} } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment