Skip to content

Instantly share code, notes, and snippets.

@robie2011
Created December 22, 2020 10:24
Show Gist options
  • Save robie2011/02deff5d7200746d2ee720ecae246e25 to your computer and use it in GitHub Desktop.
Save robie2011/02deff5d7200746d2ee720ecae246e25 to your computer and use it in GitHub Desktop.
Push nuget package to local store
$targetDir = "$env:USERPROFILE\.nuget\packages"
gci -Filter *.nupkg | % { nuget push $_.Name -Source $targetDir }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment