Conversion from Windows-Legacy project to Windows project

I would like to add few more errors I faced, which might help other people.

Thanks Yoichi, your tutorial helped me a lot while converting projects from Windows legacy to Windows.

1. Variable name and File Name should not be same
Error Message :
“The assembly compilation returned the following errors:
‘ExceptionDictionary’: member names cannot be the same as their enclosing type”
Solution: Replace the File Name or variable Name

2. Type Conversion issue
Error Message :
Get Asset Value : Cannot Convert type ‘System.String’ to type ‘UiPath.Core.GenericValue’
Solution: Use Object instead of Generic value

3. Syntax change for some functions
Error Message :
Public function IsNumeric() as Boolean’ has no parameters and its return type cannot be indexed
Solution: replaced IsNumeric(VarName) with VarName.IsNumeric

4. HintSize’ property has already been set on ‘Delay’.
Error Message :
HintSize’ property has already been set on ‘Delay’.
Solution: deleted and added the delay activities

5. Folder Names and File Name are Case Sensitive

Linked with the central code conversion mapping set list

1 Like