internal static void Register(CommandLineApplication app, Func <ILogger> getLogger) { app.Command("remove", RemoveCmd => { RemoveCmd.Command("source", SourceCmd => { CommandArgument name = SourceCmd.Argument( "name", Strings.SourcesCommandNameDescription); CommandOption configfile = SourceCmd.Option( "--configfile", Strings.Option_ConfigFile, CommandOptionType.SingleValue); SourceCmd.HelpOption("-h|--help"); SourceCmd.Description = Strings.RemoveSourceCommandDescription; SourceCmd.OnExecute(() => { var args = new RemoveSourceArgs() { Name = name.Value, Configfile = configfile.Value(), }; RemoveSourceRunner.Run(args, getLogger); return(0); }); }); RemoveCmd.Command("client-cert", ClientCertCmd => { CommandOption packagesource = ClientCertCmd.Option( "-s|--package-source", Strings.Option_PackageSource, CommandOptionType.SingleValue); CommandOption configfile = ClientCertCmd.Option( "--configfile", Strings.Option_ConfigFile, CommandOptionType.SingleValue); ClientCertCmd.HelpOption("-h|--help"); ClientCertCmd.Description = Strings.RemoveClientCertCommandDescription; ClientCertCmd.OnExecute(() => { var args = new RemoveClientCertArgs() { PackageSource = packagesource.Value(), Configfile = configfile.Value(), }; RemoveClientCertRunner.Run(args, getLogger); return(0); }); }); RemoveCmd.HelpOption("-h|--help"); RemoveCmd.Description = Strings.Remove_Description; RemoveCmd.OnExecute(() => { app.ShowHelp("remove"); return(0); }); }); }
internal static void Register(CommandLineApplication app, Func <ILogger> getLogger) { app.Command("list", ListCmd => { ListCmd.Command("source", SourceCmd => { CommandOption format = SourceCmd.Option( "--format", Strings.SourcesCommandFormatDescription, CommandOptionType.SingleValue); CommandOption configfile = SourceCmd.Option( "--configfile", Strings.Option_ConfigFile, CommandOptionType.SingleValue); SourceCmd.HelpOption("-h|--help"); SourceCmd.Description = Strings.ListSourceCommandDescription; SourceCmd.OnExecute(() => { var args = new ListSourceArgs() { Format = format.Value(), Configfile = configfile.Value(), }; ListSourceRunner.Run(args, getLogger); return(0); }); }); ListCmd.Command("client-cert", ClientCertCmd => { CommandOption configfile = ClientCertCmd.Option( "--configfile", Strings.Option_ConfigFile, CommandOptionType.SingleValue); ClientCertCmd.HelpOption("-h|--help"); ClientCertCmd.Description = Strings.ListClientCertCommandDescription; ClientCertCmd.OnExecute(() => { var args = new ListClientCertArgs() { Configfile = configfile.Value(), }; ListClientCertRunner.Run(args, getLogger); return(0); }); }); ListCmd.HelpOption("-h|--help"); ListCmd.Description = Strings.List_Description; ListCmd.OnExecute(() => { app.ShowHelp("list"); return(0); }); }); }
internal static void Register(CommandLineApplication app, Func <ILogger> getLogger) { app.Command("update", UpdateCmd => { UpdateCmd.Command("source", SourceCmd => { CommandArgument name = SourceCmd.Argument( "name", Strings.SourcesCommandNameDescription); CommandOption source = SourceCmd.Option( "-s|--source", Strings.SourcesCommandSourceDescription, CommandOptionType.SingleValue); CommandOption username = SourceCmd.Option( "-u|--username", Strings.SourcesCommandUsernameDescription, CommandOptionType.SingleValue); CommandOption password = SourceCmd.Option( "-p|--password", Strings.SourcesCommandPasswordDescription, CommandOptionType.SingleValue); CommandOption storePasswordInClearText = SourceCmd.Option( "--store-password-in-clear-text", Strings.SourcesCommandStorePasswordInClearTextDescription, CommandOptionType.NoValue); CommandOption validAuthenticationTypes = SourceCmd.Option( "--valid-authentication-types", Strings.SourcesCommandValidAuthenticationTypesDescription, CommandOptionType.SingleValue); CommandOption configfile = SourceCmd.Option( "--configfile", Strings.Option_ConfigFile, CommandOptionType.SingleValue); SourceCmd.HelpOption("-h|--help"); SourceCmd.Description = Strings.UpdateSourceCommandDescription; SourceCmd.OnExecute(() => { var args = new UpdateSourceArgs() { Name = name.Value, Source = source.Value(), Username = username.Value(), Password = password.Value(), StorePasswordInClearText = storePasswordInClearText.HasValue(), ValidAuthenticationTypes = validAuthenticationTypes.Value(), Configfile = configfile.Value(), }; UpdateSourceRunner.Run(args, getLogger); return(0); }); }); UpdateCmd.Command("client-cert", ClientCertCmd => { CommandOption packagesource = ClientCertCmd.Option( "-s|--package-source", Strings.Option_PackageSource, CommandOptionType.SingleValue); CommandOption path = ClientCertCmd.Option( "--path", Strings.Option_Path, CommandOptionType.SingleValue); CommandOption password = ClientCertCmd.Option( "--password", Strings.Option_Password, CommandOptionType.SingleValue); CommandOption storepasswordincleartext = ClientCertCmd.Option( "--store-password-in-clear-text", Strings.Option_StorePasswordInClearText, CommandOptionType.NoValue); CommandOption storelocation = ClientCertCmd.Option( "--store-location", Strings.Option_StoreLocation, CommandOptionType.SingleValue); CommandOption storename = ClientCertCmd.Option( "--store-name", Strings.Option_StoreName, CommandOptionType.SingleValue); CommandOption findby = ClientCertCmd.Option( "--find-by", Strings.Option_FindBy, CommandOptionType.SingleValue); CommandOption findvalue = ClientCertCmd.Option( "--find-value", Strings.Option_FindValue, CommandOptionType.SingleValue); CommandOption force = ClientCertCmd.Option( "-f|--force", Strings.Option_Force, CommandOptionType.NoValue); CommandOption configfile = ClientCertCmd.Option( "--configfile", Strings.Option_ConfigFile, CommandOptionType.SingleValue); ClientCertCmd.HelpOption("-h|--help"); ClientCertCmd.Description = Strings.UpdateClientCertCommandDescription; ClientCertCmd.OnExecute(() => { var args = new UpdateClientCertArgs() { PackageSource = packagesource.Value(), Path = path.Value(), Password = password.Value(), StorePasswordInClearText = storepasswordincleartext.HasValue(), StoreLocation = storelocation.Value(), StoreName = storename.Value(), FindBy = findby.Value(), FindValue = findvalue.Value(), Force = force.HasValue(), Configfile = configfile.Value(), }; UpdateClientCertRunner.Run(args, getLogger); return(0); }); }); UpdateCmd.HelpOption("-h|--help"); UpdateCmd.Description = Strings.Update_Description; UpdateCmd.OnExecute(() => { app.ShowHelp("update"); return(0); }); }); }