ARTIFACTORY: How to push .NET NuGet Packages with build information

AuthorFullName__c
Yanxiu Wu
articleNumber
000006880
FirstPublishedDate
2026-03-15T11:24:25Z
lastModifiedDate
2026-03-15

ARTIFACTORY: How to push .NET NuGet Packages with build information

Introduction 
JFrog CLI collects build-info from your build agents and then publishes it to Artifactory. Once published, the build info can be viewed under Builds.
But if you use the command below to push packages to the Artifactory:
jf dotnet nuget push *.nupkg --source "MyArtifact" --build-name="sample_project_build_info" --build-number="1.0.1"
You will not see the build information under Builds:

User-added image 


Resolution 
We can use the command below to push packages with build information:
jf rt u "*.nupkg" $nuget-repo-name --build-name="sample_project_build_info" --build-number="1.0.1"
Then we can find the build information under Builds:

User-added image 

More information about .NET/NuGet build integration using JFrog CLI, please refer to :
https://github.com/jfrog/project-examples/tree/master/dotnet-examples