paket find-packages
Search for NuGet packages.
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: |
|
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.
Silent mode
The silent mode can be used for tooling support in various editors.
It allows to create suggestions for paket add
:
1:
|
|
The command prints package names matching entered text enabling package name
suggestions. It will keep running in a loop until it receives the text :q
.
Example
Run the command paket find-packages --silent
and enter a search term (fake
was used here).
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: |
|