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:
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:
More information about .NET/NuGet build integration using JFrog CLI, please refer to :
https://github.com/jfrog/project-examples/tree/master/dotnet-examples