Quantcast
Channel: Active questions tagged nuget-package - Stack Overflow
Viewing all articles
Browse latest Browse all 3067

Is there a way to reference a nuget package which has a specific stage approved under release pipeline?

$
0
0

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?


Viewing all articles
Browse latest Browse all 3067

Trending Articles