Remove a dependency.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
|
paket remove [--help] [--project <path>] [--group <name>] [--force] [--interactive] [--no-install]
<package ID>
NUGET:
<package ID> NuGet package ID
OPTIONS:
--project, -p <path> remove the dependency from a single project only
--group, -g <name> remove the dependency from a group (default: Main group)
--force, -f force download and reinstallation of all dependencies
--interactive, -i ask for every project whether to remove the dependency
--no-install do not modify projects
--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.
It's possible to remove a dependency from a specific project only:
1:
|
paket remove <package ID> --project <project>
|
See also paket add
.