-
-
Save agross/68208baec4fddf5956c749a1630aafe1 to your computer and use it in GitHub Desktop.
This file contains 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
± bin/paket.exe add --help | |
Paket version 5.0.0-rc010 | |
Help was requested: | |
USAGE: paket add [--help] [--version <version>] [--project <name>] [--group <name>] [--create-new-binding-files] [--force] [--interactive] [--redirects] [--clean-redirects] [--no-install] [--keep-major] | |
[--keep-minor] [--keep-patch] [--touch-affected-refs] <package id> | |
NUGET: | |
<package id> NuGet package ID | |
OPTIONS: | |
--version, -V <version> | |
package version constraint | |
--project, -p <name> add the package to a single project only | |
--group, -g <name> add the package to a group (default: Main group) | |
--create-new-binding-files | |
create binding redirect files if needed | |
--force, -f force download and reinstallation of all dependencies | |
--interactive, -i ask for every project whether to add the dependency | |
--redirects create binding redirects | |
--clean-redirects remove binding redirects that were not created by Paket | |
--no-install skip install process after resolving dependencies | |
--keep-major only allow updates that preserve the major version | |
--keep-minor only allow updates that preserve the minor version | |
--keep-patch only allow updates that preserve the patch version | |
--touch-affected-refs touch project files referencing affected dependencies to help incremental build tools detecting the change | |
--silent, -s suppress console output | |
--verbose, -v print detailed information to the console | |
--log-file <path> print output to a file | |
--from-bootstrapper call coming from the '--run' feature of the bootstrapper | |
--help display this list of options. | |
agross@AXL /lab/paket @gnu*^ | |
± bin/paket.exe add nuget foo group bar | |
Paket version 5.0.0-rc010 | |
Please use the new syntax: nuget -> (option was removed) | |
Please use the new syntax: group -> --group | |
Adding foo to D:\Users\agross\Coding\paket\paket.dependencies into group bar | |
agross@AXL /lab/paket @gnu*^ | |
↑ bin/paket.exe add nuget foo group bar --group baz | |
Paket version 5.0.0-rc010 | |
Please use the new syntax: nuget -> (option was removed) | |
Performance: | |
- Runtime: 807 milliseconds | |
Paket failed with: | |
You cannot use the old and new syntax at the same time: group <-> --group | |
agross@AXL /lab/paket @gnu*^ | |
↑ bin/paket.exe why --help | |
Paket version 5.0.0-rc010 | |
Help was requested: | |
USAGE: paket why [--help] [--group <name>] [--details] <package id> | |
NUGET: | |
<package id> NuGet package ID | |
OPTIONS: | |
--group, -g <name> specifiy dependency group (default: Main group) | |
--details display detailed information with all paths, versions and framework restrictions | |
--silent, -s suppress console output | |
--verbose, -v print detailed information to the console | |
--log-file <path> print output to a file | |
--from-bootstrapper call coming from the '--run' feature of the bootstrapper | |
--help display this list of options. | |
agross@AXL /lab/paket @gnu*^ | |
± bin/paket.exe why nuget FAKE group Main | |
Paket version 5.0.0-rc010 | |
Please use the new syntax: nuget -> (option was removed) | |
Please use the new syntax: group -> --group | |
agross@AXL /lab/paket @gnu*^ | |
↑ bin/paket.exe why nuget FAKE group Main --group Test | |
Paket version 5.0.0-rc010 | |
Please use the new syntax: nuget -> (option was removed) | |
Performance: | |
- Runtime: 806 milliseconds | |
Paket failed with: | |
You cannot use the old and new syntax at the same time: group <-> --group |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment