Fire Bolt
Fire Bolt

Reputation: 9

UiPath Studio Activity Query

I just need to know what is the entry point of a process or a library when we create and run them in UiPath Studio

For Example When we create a angularjs Program we know when we run it the entry point of that application is "ng-app"

UiPath Studio Version - 2021.10.5 License - Community License

Upvotes: 0

Views: 176

Answers (1)

John Kim
John Kim

Reputation: 1158

The entry point of the process (the main workflow) is defined in project.json of your process. For example :

{
  "name": "MyTask",
  "description": "MyTask",
  "main": "Main.xaml", <--- This is your entry point workflow
  "dependencies": {
    "UiPath.Database.Activities": "[1.4.0]",
    "UiPath.Excel.Activities": "[2.9.5]",
    "UiPath.Mail.Activities": "[1.9.5]",
    "UiPath.System.Activities": "[20.10.3]",
    "UiPath.UIAutomation.Activities": "[20.10.8]"
  }
  ...

Upvotes: 1

Related Questions