I am working on a .net solution and am using nuget to manage packages. I chose the option "Enable Nuget package recovery" so that nuget packages are not checked for source control.
Before that, I had the nuget.config file at the same level as the solution in which I included the following to indicate the location of the nuget packages.
<settings> <repositoryPath>..\Build\NuGetPackages\</repositoryPath> </settings>
Since I turned on nuget package recovery, this no longer works. I tried updating the configuration file in the .nuget generated folder, but this does not work either.
So where am I mistaken and how can I specify the location of the package folder?
source share