Show installed top-level packages.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
|
paket show-installed-packages [--help] [--all] [--project <path>]
OPTIONS:
--all, -a include transitive dependencies
--project, -p <path> specify project to show dependencies for
--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.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
|
$ paket show-installed-packages --all --silent
Main Newtonsoft.Json - 6.0.8
Main NUnit - 2.6.4
Main RestSharp - 104.5
Main System.Reactive - 3.1.1
Main System.Reactive.Core - 3.1.1
Main System.Reactive.Interfaces - 3.1.1
Main System.Reactive.Linq - 3.1.1
Main System.Reactive.PlatformServices - 3.1.1
Main System.Reactive.Windows.Threading - 3.1.1
|