So I have an Azure DevOps Pipelines that looks like this:
So currently, with NuGet 4.6.2, I can add my credentials/PAT using service endpoint. This is working now.
But, I am stuck with NuGet 4.6.2. If I upgrade to the latest NuGet (5.8), then I will get errors during NuGet restore:
Unable to find version '<x.y.z>' of package '<my.object.package>'.
C:\Users\VssAdministrator\.nuget\packages\:
Package '<my.object.package.x.y.z>' is not found on source 'C:\Users\VssAdministrator\.nuget\packages\'.
https://api.nuget.org/v3/index.json:
Package '<my.object.package.x.y.z>' is not found on source 'https://<private.nuget.url>: Failed to fetch results from V2 feed at '
Response status code does not indicate success: 401 (Unauthorized).)
My guess is that somehow I need to pass in the credential to the private NuGet feed (outside of the organization) differently - but not sure how. Or maybe I am missing something here?
