G1ANT ADDON


HOW TO CREATE ADDON IN SIMPLE STEPS:
  • Download visual studio 2019(https://visualstudio.microsoft.com/thank-you-downloading-visual-studio/?sku=Community&rel=16)
  • ADD SDK file in it(go to GitHub and download from manual it's available)(https://github.com/G1ANT-Robot/G1ANT.Sdk)
  • Create a project
  • While opening the studio go to project>nuget package>unistall old>install new.
  • Then in the left, we can see a box right click>class>name
  • while naming class always put .cs
  • so execute the program>run
  • using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using G1ANT.Language;
    namespace G1ANT.Addon.MyAddon
    {
    [Command(Name ="mycommand", Tooltip = "This is a demo command.")]
    class MyCommand : Command
    {
    public MyCommand(AbstractScripter scripter) : base(scripter)
    {
    }
    public class Arguments : CommandArguments
    {
    [Argument(Name = "message", Required = true, Tooltip = "Type in the text to display")]
    public TextStructure message { get; set; } = new TextStructure();
    }
    public void Execute(Arguments arguments)
    {
    RobotMessageBox.Show(arguments.message.Value);
    }
    }
    }
  • Afterwise go to addon right click>containment folder>search for dll>copy&paste in G1ANT add-on folder
  • open G1ANT studio
  • RUN THE PROGRAM!!!!
these above is only a basic steps

Go through video:


PLEASE WATCH THE VIDEO FOR MORE DETAILS, I HAD ATTACHED EVERY LINK IN STEPS FOR DOWNLOADING EVERY FILE IT WOULD BE MUCH EASY 

                                                                                                                        -HITHUL KANNAN
                                                                                                                      G1ANT RPA INTERNS

Comments

Popular posts from this blog

RPA@PowerPoint

RPA@FACTS