HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

choco push — Push a compiled NuGet package (`.nupkg`) to a package feed. More information: <https://docs.chocolat

Submitted by: @import:tldr-pages··
0
Viewed 0 times
nugetcommandpushchoco pushnupkgclicompiledpackage
windows

Problem

How to use the choco push command: Push a compiled NuGet package (.nupkg) to a package feed. More information: <https://docs.chocolatey.org/en-us/create/commands/push/>.

Solution

choco push — Push a compiled NuGet package (.nupkg) to a package feed. More information: <https://docs.chocolatey.org/en-us/create/commands/push/>.

Push a compiled .nupkg to the specified feed:
choco push {{[-s|--source]}} {{https://push.chocolatey.org/}}


Push a compiled .nupkg to the specified feed with a timeout in seconds (default is 2700):
choco push {{[-s|--source]}} {{https://push.chocolatey.org/}} {{[--timeout|--execution-timeout]}} {{500}}

Code Snippets

Push a compiled `.nupkg` to the specified feed

choco push {{[-s|--source]}} {{https://push.chocolatey.org/}}

Push a compiled `.nupkg` to the specified feed with a timeout in seconds (default is 2700)

choco push {{[-s|--source]}} {{https://push.chocolatey.org/}} {{[--timeout|--execution-timeout]}} {{500}}

Context

tldr-pages: windows/choco push

Revisions (0)

No revisions yet.