I have a .NET solution with few projects. Each of these projects consume 1 or more Nuget packages. To each project, I have added a Nuget.config file which has this setting:
<config>
<add key="repositoryPath" value=".\packages" />
</config>
Intent is to install packages in project level packages folder. But when I install packges through Visual Studio package manager, they are still getting installed in solution level packages folder. These are project level packages as they have files in lib directories. So whenever I install them, packages.config file at the project level gets updated accordingly but the location is still at solution level.VS Package manager doesn't seem to read project level nuget.config at have destination folder at project level. Pls help.
Thanks
Sandeep