Under one of our previous projects which had package.config and we used to reference a nuget package which had a specific stage approved under release pipeline:
<package id="Sample.Nuget" source="XYZ@UAT" destination="packages\%PackageName%" />
We now are using Package Reference, and I tried something like this, but looks like its always getting the latest:
<PackageReference Include="Sample.Nuget" Version="*" />
Is there a way to refer to the @UAT stage approved nuget package?