26 references to ConfigCommandStrings
aspire (26)
Commands\ConfigCommand.cs (25)
24: base("config", ConfigCommandStrings.Description, features, updateNotifier, executionContext, interactionService) 57ConfigCommandStrings.ExtensionActionPrompt, 72: base("get", ConfigCommandStrings.GetCommand_Description, features, updateNotifier, configurationService, executionContext, interactionService) 76Description = ConfigCommandStrings.GetCommand_KeyArgumentDescription 97var key = await InteractionService.PromptForStringAsync(ConfigCommandStrings.GetCommand_PromptForKey, required: true, cancellationToken: cancellationToken); 121: base("set", ConfigCommandStrings.SetCommand_Description, features, updateNotifier, configurationService, executionContext, interactionService) 125Description = ConfigCommandStrings.SetCommand_KeyArgumentDescription 131Description = ConfigCommandStrings.SetCommand_ValueArgumentDescription 137Description = ConfigCommandStrings.SetCommand_GlobalArgumentDescription 167var key = await InteractionService.PromptForStringAsync(ConfigCommandStrings.SetCommand_PromptForKey, required: true, cancellationToken: cancellationToken); 168var value = await InteractionService.PromptForStringAsync(ConfigCommandStrings.SetCommand_PromptForValue, required: true, cancellationToken: cancellationToken); 170ConfigCommandStrings.SetCommand_PromptForGlobal, 172g => g ? ConfigCommandStrings.SetCommand_PromptForGlobal_GlobalOption : ConfigCommandStrings.SetCommand_PromptForGlobal_LocalOption, 184? string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeySetGlobally, key, 186: string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeySetLocally, key, 200: BaseConfigSubCommand("list", ConfigCommandStrings.ListCommand_Description, features, updateNotifier, configurationService, executionContext, interactionService) 225InteractionService.DisplayMessage("information", ConfigCommandStrings.NoConfigurationValuesFound); 238: base("delete", ConfigCommandStrings.DeleteCommand_Description, features, updateNotifier, configurationService, executionContext, interactionService) 242Description = ConfigCommandStrings.DeleteCommand_KeyArgumentDescription 248Description = ConfigCommandStrings.DeleteCommand_GlobalArgumentDescription 271var key = await InteractionService.PromptForStringAsync(ConfigCommandStrings.DeleteCommand_PromptForKey, required: true, cancellationToken: cancellationToken); 281ConfigCommandStrings.DeleteCommand_PromptForGlobal, 299InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeyDeletedGlobally, key)); 303InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeyDeletedLocally, key));
Resources\ConfigCommandStrings.Designer.cs (1)
41global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Aspire.Cli.Resources.ConfigCommandStrings", typeof(ConfigCommandStrings).Assembly);