Paket


paket push

Push a NuGet package.

 1: 
 2: 
 3: 
 4: 
 5: 
 6: 
 7: 
 8: 
 9: 
10: 
11: 
12: 
13: 
14: 
15: 
16: 
paket push [--help] [--url <url>] [--api-key <key>] [--endpoint <path>] [--ignoreConflicts] <path>

PACKAGE:

    <path>                path to the .nupkg file

OPTIONS:

    --url <url>           URL of the NuGet feed
    --api-key <key>       API key for the URL (default: value of the NUGET_KEY environment variable)
    --endpoint <path>     API endpoint to push to (default: /api/v2/package)
    --ignoreConflicts     Ignore any HTTP409 (Conflict) errors and treat as success
    --silent, -s          suppress console output
    --verbose, -v         print detailed information to the console
    --log-file <path>     print output to a file
    --help                display this list of options.

If you add the --verbose flag Paket will run in verbose mode and show detailed information.

With --log-file [path] you can trace the logged information into a file.

Fork me on GitHub