Paket


paket auto-restore

Manage automatic package restore during the build process inside Visual Studio.

 1: 
 2: 
 3: 
 4: 
 5: 
 6: 
 7: 
 8: 
 9: 
10: 
11: 
12: 
paket auto-restore [--help] <on|off>

FLAGS:

    <on|off>              enable or disable automatic package restore

OPTIONS:

    --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.

When enabling auto-restore, Paket will

  • create a .paket directory in your root directory,
  • download paket.targets and paket.bootstrapper.exe into the .paket directory,
  • add an <Import> statement for paket.targets to projects that have a paket.references file.

When disabling auto-restore, Paket will

  • remove paket.targets from the .paket directory,
  • remove the <Import> statement for paket.targets from projects that have a paket.references file.
Fork me on GitHub