Closed
Solved
Dynamically setting Work Queue in Pega Robotics Project Properties
We have a requirement to deploy Pega Robotics Solution in multiple machines with different Robot Work Queue for each machine. Changing the Robot Work Queue everytime and deploying on the Robot machines is tedious as there are many projects to be updated in a Solution.
Is there any centralized configuration setting to configure Robot Work Queue and make the projects properties for Robot WorkQueue to refer the value from the configuration file.
It would be of great help if you provide any suggestion to simplify the process of updating Robot WorkQueue property for multiple projects.
To see attachments, please log in.
This has been handled by editing the script in .cs project file after building project.
File Location - \Pega Robotics Studio\Projects\<Solution Folder name>\<Project Folder name>\obj\Debug\_Project_\<Projectname>.cs
The code this.mRobotWorkQueue = "<ROBOTNAME>"; has been replaced with code statements to read a file and get Robotqueue name from the file instead of setting hardcoded Robot Queue name from Project properties window.
Appreciate if anyone suggest better solution without hacking code in .cs file.