I'm running a docker container where I map the source code folder from the local filesystem to the /src folder
When I then run the "dotnet cake" script, this installs a nuget package for npm with
#addin nuget:?package=Cake.Npm&version=2.0.0
This then installs the package in the /src/tools/Addin folder.
Is there any way for me to get it to install this to another folder? F.eks the /home/ folder
Cake has multiple configuration options. The option you are looking for is the addins path.
If you want to configure Cake using a configuration file, you would create a
cake.configfile, containing:Keep in mind, though that this will change the installation path for all the addins in your Cake file!