- 发行说明
- 概述
- 入门指南
- UiPath 市场供应商
- UiPath Marketplace 客户
- 发布准则
- 即用型自动化发布准则
- 解决方案加速器发布准则
- Integration Service 连接器的发布准则
- Process Mining 应用程序模板发布准则
- 安全性与 IP 保护
- 其他 UiPath 列表
- 连接器
- 如何创建活动
- 构建集成
Marketplace 用户指南
您现在已完成活动创建教程并拥有了一个有效的活动包,是时候了解所有组成文件的作用了,以及它们如何交织在一起以形成 UiPath 活动。Visual Studio 中的每个活动解决方案都包含 3 个主要部分(称为项目):辅助部分、活动和设计器。
Auxiliary Project (Optional)
The first project contains all the custom classes in the activity namespace and which are referenced in the subsequent projects. These can include clients, custom datatypes, interfaces, exceptions, enums, auxiliary classes, etc. Because these are supporting files that may not exist in your particular activity, the Auxiliary project is optional.

Activity Project
此项目包含每个活动的执行逻辑。请注意,UiPath Studio 中的每个活动在 Visual Studio 中都有一个对应的文件。要了解每个文件,请参阅“自定义活动”部分。

Designer Project
此项目包含活动的所有用户界面元素,包括自定义控件、主题(用于添加外观和样式)、转换器(用于将属性和数据绑定到用户界面元素的类)和活动用户界面。请注意,UiPath Studio 中的每个活动在 Visual Studio 中都有对应的Xaml和Xaml.cs文件。

此处还包括包的元数据文件:设计器元数据和nuspec 。有关这些内容的更多信息,请参阅 “构建包”部分。
Notice the Shared folder below the other projects. This is a basket of handy classes and controls that can be used to speed up development. In fact, some are already incorporated into the projects you generated.