- 发行说明
- 概述
- 入门指南
- UiPath 市场供应商
- UiPath Marketplace 客户
- 发布准则
- 即用型自动化发布准则
- 解决方案加速器发布准则
- Integration Service 连接器的发布准则
- Process Mining 应用程序模板发布准则
- 安全性与 IP 保护
- 其他 UiPath 列表
- 连接器
- 如何创建活动
- 构建集成

Marketplace 用户指南
开发准则
For more information related to the process of integrating with UiPath, please access the FAQ at this link.
With respect to development guidelines, please find below the standards for creating a custom activity for the UiPath platform. For reference, the current UiPath integrations are accessible here.
1. 命名
- 活动包应采用以下其中一种格式命名:
Company.Product.Activities(例如 UiPath.Orchestrator.Activities)Company.Product.Feature.Activities(例如 UiPath.Orchestrator.Webhooks.Activities)
- The
UiPathnamespace is reserved for packages created by UiPath Inc. and may not be used by outside developers. - 作用域应包含公司或产品名称(例如 使用 UiPath 作用域而非应用程序作用域)。
- Studio 活动面板中的类别应为
Company Name > Product Name > Feature Name(例如 “UiPath”>“Studio”>“单击”)。
2. 依赖项
-
Must be referenced in the Dependencies section of the NuGet package. This can be easily done in Nuget Package Explorer or in the packages.config file. In order to keep package sizes to a minimum, do not include dependency DLLs within the package itself unless necessary.


-
Use exact package versions (that is, 1.0.6 not >1.0.6)
3. 图标
-
The package must have an icon. This may be done via Nuget Package Explorer or directly in the .nuspec file.

-
每个活动都必须有一个图标。
See here for instructions on adding icons to your activities.
4. 许可证
-
The package must contain a license and require acceptance of that license. Apache 2.0 is the default and can be found here. This may be done in Nuget Package Explorer or directly in the .nuspec file.


5. 说明
-
A summary description must be added to the package, either through Nuget Package Explorer or directly in the .nuspec file.


-
Each activity in the package must have a summary description. This may be added in the DesignerMetadata.cs file. See here for instructions on how to do so.

-
活动中的每个属性/参数都必须具有说明。

-
自定义类的字段说明也很有用,但不是必需的。
6. 其他
- 必须支持 UiPath Studio 在发布时的稳定版本。
- 国际化是首选,但不是必需的。