39 references to ConfigCommandStrings
aspire (39)
Commands\ConfigCommand.cs (38)
25: base("config", ConfigCommandStrings.Description, features, updateNotifier, executionContext, interactionService, telemetry) 55ConfigCommandStrings.ExtensionActionPrompt, 71Description = ConfigCommandStrings.GetCommand_KeyArgumentDescription 75: base("get", ConfigCommandStrings.GetCommand_Description, features, updateNotifier, configurationService, executionContext, interactionService, telemetry) 96var key = await InteractionService.PromptForStringAsync(ConfigCommandStrings.GetCommand_PromptForKey, required: true, cancellationToken: cancellationToken); 121Description = ConfigCommandStrings.SetCommand_KeyArgumentDescription 125Description = ConfigCommandStrings.SetCommand_ValueArgumentDescription 129Description = ConfigCommandStrings.SetCommand_GlobalArgumentDescription 133: base("set", ConfigCommandStrings.SetCommand_Description, features, updateNotifier, configurationService, executionContext, interactionService, telemetry) 165var key = await InteractionService.PromptForStringAsync(ConfigCommandStrings.SetCommand_PromptForKey, required: true, cancellationToken: cancellationToken); 166var value = await InteractionService.PromptForStringAsync(ConfigCommandStrings.SetCommand_PromptForValue, required: true, cancellationToken: cancellationToken); 168ConfigCommandStrings.SetCommand_PromptForGlobal, 170g => g ? ConfigCommandStrings.SetCommand_PromptForGlobal_GlobalOption : ConfigCommandStrings.SetCommand_PromptForGlobal_LocalOption, 182? string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeySetGlobally, key, 184: string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeySetLocally, key, 200: BaseConfigSubCommand("list", ConfigCommandStrings.ListCommand_Description, features, updateNotifier, configurationService, executionContext, interactionService, telemetry) 227InteractionService.DisplayMessage("information", ConfigCommandStrings.NoConfigurationValuesFound); 236InteractionService.DisplayMarkdown($"**{ConfigCommandStrings.LocalConfigurationHeader}:**"); 245InteractionService.DisplayMarkdown($"**{ConfigCommandStrings.LocalConfigurationHeader}:**"); 246InteractionService.DisplayPlainText($" {ConfigCommandStrings.NoLocalConfigurationFound}"); 253InteractionService.DisplayMarkdown($"**{ConfigCommandStrings.GlobalConfigurationHeader}:**"); 263InteractionService.DisplayMarkdown($"**{ConfigCommandStrings.GlobalConfigurationHeader}:**"); 264InteractionService.DisplayPlainText($" {ConfigCommandStrings.NoGlobalConfigurationFound}"); 275InteractionService.DisplayMarkdown($"**{ConfigCommandStrings.AvailableFeaturesHeader}:**"); 287Description = ConfigCommandStrings.DeleteCommand_KeyArgumentDescription 291Description = ConfigCommandStrings.DeleteCommand_GlobalArgumentDescription 295: base("delete", ConfigCommandStrings.DeleteCommand_Description, features, updateNotifier, configurationService, executionContext, interactionService, telemetry) 319var key = await InteractionService.PromptForStringAsync(ConfigCommandStrings.DeleteCommand_PromptForKey, required: true, cancellationToken: cancellationToken); 329ConfigCommandStrings.DeleteCommand_PromptForGlobal, 347InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeyDeletedGlobally, key)); 351InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeyDeletedLocally, key)); 375: base("info", ConfigCommandStrings.InfoCommand_Description, features, updateNotifier, configurationService, executionContext, interactionService, telemetry) 382Description = ConfigCommandStrings.InfoCommand_JsonOptionDescription 426InteractionService.DisplayMarkdown($"**{ConfigCommandStrings.InfoCommand_LocalSettingsPath}:**"); 429InteractionService.DisplayMarkdown($"**{ConfigCommandStrings.InfoCommand_GlobalSettingsPath}:**"); 432InteractionService.DisplayMarkdown($"**{ConfigCommandStrings.InfoCommand_AvailableFeatures}:**"); 438InteractionService.DisplayMarkdown($"**{ConfigCommandStrings.InfoCommand_SettingsProperties}:**");
Resources\ConfigCommandStrings.Designer.cs (1)
41global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Aspire.Cli.Resources.ConfigCommandStrings", typeof(ConfigCommandStrings).Assembly);