Open vilinski opened 5 years ago
From https://github.com/fsprojects/Paket/issues/3436#issuecomment-440981451:
dotnet tool install --tool-path .paket Paket
I believe the dotnet
CLI creates the correct shim (paket.exe
on Windows, paket
on Unix) and the latest Paket.Restore.targets
should already support that.
Note that with .net sdk 3 preview 7 you can do this in a more centrally-managed way: https://gist.github.com/baronfel/80f49ecb93ebacb84ca840fca7a12fc2
Description
Maybe I'm doing it wrong? I have installed paket as a global dotnet tool and used it in terminal with a new dotnet project. I supposed I don't need a bootstrapper anymore. Getting error by
dotnet build
orrestore
Repro steps
If possible then please create a git repository with a repro sample or attach a zip to the issue.
Expected behavior
Project built without any errors.
Actual behavior
paket update
works, but neitherdotnet build
nordotnet restore
. Getting following error:Environment
MacOS with latest mono, dotnet SDK and paket
classlib.tar.gz
Known workarounds
Install
paket.bootstrapper
manually into.paket
folder or use plain nuget instead.