cicd-integrations
2024.10
false
- UiPath CLI release notes
- Azure DevOps extension release notes
- Jenkins plugin release notes
CI/CD integrations release notes
Release date: June 4, 2026
What's new
Override the activities root category when packing a library
When you pack a library project, every activity exposed by the resulting package gets a root category prefix. By default, that prefix is the library project name. The new --activitiesRootCategory parameter lets you override it without renaming the project.
uipcli package pack "C:\projects\MyLibrary\project.json" -o "C:\Output" --activitiesRootCategory "MyCompany.Finance.Invoicing"
uipcli package pack "C:\projects\MyLibrary\project.json" -o "C:\Output" --activitiesRootCategory "MyCompany.Finance.Invoicing"
Activities in the resulting .nupkg will appear under MyCompany.Finance.Invoicing in the Studio Activities panel of any project that installs the library.
The parameter has effect only when packing a library project. It is ignored for Process, Tests, and Objects output types. When omitted, the behavior is unchanged: the root category falls back to the library project name, matching what the Library Publish dialog in Studio produces.