Configuring the NuGet client:

ARTIFACTORY: How to add an Artifactory NuGet remote repository to resolve a package from nuget.pkg.github.com

AuthorFullName__c
Janardhana JL
articleNumber
000006018
ft:sourceType
Salesforce
FirstPublishedDate
2024-01-30T09:40:31Z
lastModifiedDate
2024-01-30
VersionNumber
3
Select the NuGet repository in the Artifacts module Tree Browser, and click Set Me Up to display the code snippets you can use to configure on your NuGet client to use the selected repository to resolve artifacts and configure with the V3 feed.
<configuration>
  <packageSources>
    <add key="Artifactory" value="http://artifactory.com/artifactory/api/nuget/v3/nuget-remote/index.json" />
  </packageSources>
  <packageSourceCredentials>
    <Artifactory>
        <add key="Username" value="....." />
        <add key="Password" value="....." />
      </Artifactory>
  </packageSourceCredentials>
</configuration>