- Overview
- UiPath CLI
- About UiPath CLI
- Downloading UiPath CLI
- Compatibility matrix
- Running UiPath CLI
- Managing NuGet feeds
- Packing projects into a package
- Analyzing a project
- Deploying a package to Orchestrator
- Running a job inside Orchestrator
- Testing a package or running a test set
- Testing multiple packages
- Deploying assets to Orchestrator
- Deleting assets from Orchestrator
- Running tasks using JSON configuration
- Restoring automation dependencies
- Troubleshooting UiPath CLI
- Azure DevOps extension
- Jenkins plugin

CI/CD integrations user guide
Managing NuGet feeds
This section describes how you can manage the built-in NuGet feeds and use custom NuGet feeds according to your specific project requirements.
These feed configurations apply to both standalone RPA projects and Solutions.
Disabling the built-in NuGet feeds
By default, uipcli searches for dependencies in the following built-in feeds:
https://pkgs.dev.azure.com/uipath/Public.Feeds/_packaging/UiPath-Official/nuget/v3/index.jsonhttps://gallery.uipath.com/api/v2https://api.nuget.org/v3/index.jsonC:\Program Files\Microsoft SDKs\NuGetPackages(if this path is on the current agent)C:\Program Files (x86)\Microsoft SDKs\NuGetPackages(if this path is on the current agent)
You can specify uipcli to not use the built-in feeds by setting the --disableBuiltInNugetFeeds parameter. This parameter can be used with the following tasks: analyze, pack, and test run. When you run uipcli with a configuration file, set "disableBuiltInNugetFeeds": true.


Using custom NuGet feeds
You can use custom feeds when packing an RPA automation project or solution.
Using custom nuget.config in UiPath CLI
To use a custom feed, take the following steps:
-
Create a custom
nuget.configfile with the following format:<?xml version="1.0" encoding="utf-8"?><configuration> <packageSources> <add key="test custom feed" value="custom_feed_url" /> </packageSources></configuration><?xml version="1.0" encoding="utf-8"?><configuration> <packageSources> <add key="test custom feed" value="custom_feed_url" /> </packageSources></configuration> -
Place the custom
nuget.configfile in the folder whereuipcliis cached:
Using custom nuget.config in Azure DevOps
You need to update the configuration and copy nuget.config to $(Agent.ToolsDirectory)/uipcli, after the InstallPlatform step, as shown in the following example:
trigger:- mainpool: vmImage: ubuntu-lateststages:- stage: Demo jobs: - job: Demo steps: - task: UiPathInstallPlatform@6 inputs: cliVersion: '25.10' - task: CopyFiles@2 inputs: SourceFolder: '$(Build.SourcesDirectory)' Contents: 'nuget.config' TargetFolder: '$(Agent.ToolsDirectory)/uipcli' - task: UiPathPack@6 inputs: versionType: 'AutoVersion' projectJsonPath: '$(Build.SourcesDirectory)/project.json' outputPath: '$(Build.ArtifactStagingDirectory)/Output' traceLevel: 'Information'trigger:- mainpool: vmImage: ubuntu-lateststages:- stage: Demo jobs: - job: Demo steps: - task: UiPathInstallPlatform@6 inputs: cliVersion: '25.10' - task: CopyFiles@2 inputs: SourceFolder: '$(Build.SourcesDirectory)' Contents: 'nuget.config' TargetFolder: '$(Agent.ToolsDirectory)/uipcli' - task: UiPathPack@6 inputs: versionType: 'AutoVersion' projectJsonPath: '$(Build.SourcesDirectory)/project.json' outputPath: '$(Build.ArtifactStagingDirectory)/Output' traceLevel: 'Information'Using custom nuget.config in Jenkins
You need to update the configuration and copy nuget.config to ${WORKSPACE}/CLI, after the InstallPlatform step, as shown in the following example:
pipeline { agent { label 'jenkins-agent' } stages { stage('Clone') { steps { git ( branch: 'main', url: 'https://github.com/your-org/your-repo.git' ) } } stage('Install Platform') { steps { UiPathInstallPlatform ( cliVersion: '25.10', traceLevel: 'Information' ) } } stage('Copy nuget.config') { steps { bat 'copy nuget.config CLI\\nuget.config' } } stage('Pack') { steps { UiPathPack ( outputPath: '${WORKSPACE}/Output', projectJsonPath: '${WORKSPACE}/project.json', traceLevel: 'Information', version: AutoVersion() ) } } }}pipeline { agent { label 'jenkins-agent' } stages { stage('Clone') { steps { git ( branch: 'main', url: 'https://github.com/your-org/your-repo.git' ) } } stage('Install Platform') { steps { UiPathInstallPlatform ( cliVersion: '25.10', traceLevel: 'Information' ) } } stage('Copy nuget.config') { steps { bat 'copy nuget.config CLI\\nuget.config' } } stage('Pack') { steps { UiPathPack ( outputPath: '${WORKSPACE}/Output', projectJsonPath: '${WORKSPACE}/project.json', traceLevel: 'Information', version: AutoVersion() ) } } }}