public static Task Main()

in eng/update-dependencies/Program.cs [18:29]


        public static Task Main(string[] args)
        {
            RootCommand command = new RootCommand();
            foreach (Symbol symbol in Options.GetCliSymbols())
            {
                command.Add(symbol);
            };

            command.Handler = CommandHandler.Create<Options>(ExecuteAsync);

            return command.InvokeAsync(args);
        }