studio
2024.10
true
- 发行说明
- 入门指南
- 设置和配置
- 自动化项目
- 依赖项
- 工作流类型
- 控制流程
- 文件比较
- 自动化最佳实践
- 源代码控件集成
- 调试
- 日志记录
- 诊断工具
- 工作流分析器
- 变量
- 参数
- 导入的命名空间
- 编码自动化
- 基于触发器的 Attended 自动化
- 录制
- 用户界面元素
- 选取器
- 对象存储库
- 数据抓取
- 图像与文本自动化
- Citrix 技术自动化
- RDP 自动化
- VMware Horizon 自动化
- Salesforce 自动化
- SAP 自动化
- macOS 用户界面自动化
- ScreenScrapeJavaSupport 工具
- Webdriver 协议
- 扩展程序
- 测试套件 - Studio
- 故障排除
Studio 用户指南
Last updated 2024年12月4日
Assembly compilation errors
Exception: UiPath.ActivityCompiler.Exceptions.NameDoesNotExistCSharpCompilationException
Problem: You may encounter this exception when your Studio project, which includes coded automations (CS files), has a name containing expressions that are not supported. Common unsupported expressions include:
Testing
, System
, Portable
, SAP
, UiPath
, Driver
, or other activity package names.
Solution: To remedy this issue, you can modify your project name to exclude unsupported expressions. If you want to keep the desired expression, consider separating these expressions with underscores. For example, if your project name is
My SAP Project
(which includes SAP
, an unsupported expression), consider using underscores to separate the words, making it My_SAP_Project
.