private static void ParseArguments(string[] args)
        {
            if (args == null || args.Length == 0)
            {
                DisplayHelpMessage();
            }

            if (args.Length == 2)
            {
                if (args[0] == "Install")
                {
                    var command = new InstallPackageCommand(_logger, _fileSystem, _apiClient);
                    command.ExecuteAsync(args[1]);
                }
            }

            if (args.Length > 2)
            {
                _logger.LogError("Too many arguments provided.");
                DisplayHelpMessage();
            }
        }