I successfully setted up and integrate Azure DevOps Artifacts with build pipeline. Now I want to connect Visual Studio 2019 with this private feed, but the only way i found to make it works is to generate a PAT on my account and use it to add the feed to the Nuget' sources on my machine.
I also tried, without success, the Microsoft Artifact CredProvider.
There is a way to register the source without use PAT?
UPDATE As suggested by Levi-Lu-MSFT, as for now, the solution is to use the AzDevOps account as "Visual Studio Account" in Visual Studio. If, as in my case, the account used for AzDevOps is different from the VS Account, than the only way I found to make it work, is to register a NuGet Source with a PAT.
I followed below steps to add azure artifacts feed to my visual studio. And i didnot use PAT to consume the packages.
Go to Tools menu-->NuGet Package Manager -->Package Manager Setting-->Package Sources-->Select the green plus in the upper-right corner and enter the name and source URL of your azure feed.
Consume the packages:
Right click the project-->Manage nuget packages. Find a package you want to use. (You probably need to sign in your account(account used to login to AzureDevOps) in visual studio).
You can also go to Tools--> NuGet Package Manager > Package Manager Console and run the Install-Package
command to install the package.
Please see documents for more information.