Convert projects from NuGet to Paket.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
|
paket convert-from-nuget [--help] [--force] [--no-install] [--no-auto-restore]
[--migrate-credentials <mode>]
OPTIONS:
--force, -f force the conversion even if paket.dependencies or paket.references files
are present
--no-install do not modify projects
--no-auto-restore do not enable automatic package restore
--migrate-credentials <mode>
specify mode for NuGet source credential migration:
encrypt|plaintext|selective (default: encrypt)
--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.
More details about the conversion process can be found in the
"Converting from NuGet" tutorial.