I have .netcore solution with all .netcore propjects. I have an Nuget.config file on the solution root directory that have the following keys:
<config><add key="globalPackagesFolder" value="packages" /><add key="repositoryPath" value="packages" /> </config>
I have an internally produced package that get produced very frequently (multiple times a day). Package name will change every quarter. When I install this package it get installed into: SolutionRoot\packages\PackageName\PackageVersion
I would like to have this package always install to SolutionRoot\packages\FixedName. Is this possible ?