Created
February 16, 2016 20:33
-
-
Save christiansparre/a8ef842749ee27cc9413 to your computer and use it in GitHub Desktop.
Reinstall nuget package
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
| Param( | |
| [string]$packageName, | |
| [string]$source | |
| ) | |
| UnInstall-Package $packageName -RemoveDependencies -Force -ErrorAction SilentlyContinue | |
| Install-Package $packageName -IncludePreRelease -Source $source |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment