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: |
|
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
andpaket.bootstrapper.exe
into the.paket
directory, -
add an
<Import>
statement forpaket.targets
to projects that have apaket.references
file.
When disabling auto-restore, Paket will
- remove
paket.targets
from the.paket
directory, -
remove the
<Import>
statement forpaket.targets
from projects that have apaket.references
file.