45 references to ConfigCommandStrings
aspire (45)
Commands\ConfigCommand.cs (44)
24: base("config", ConfigCommandStrings.Description, services) 50ConfigCommandStrings.ExtensionActionPrompt, 66Description = ConfigCommandStrings.GetCommand_KeyArgumentDescription 70: base("get", ConfigCommandStrings.GetCommand_Description, configurationService, services) 88var key = await InteractionService.PromptForStringAsync(ConfigCommandStrings.GetCommand_PromptForKey, required: true, cancellationToken: cancellationToken); 113Description = ConfigCommandStrings.SetCommand_KeyArgumentDescription 117Description = ConfigCommandStrings.SetCommand_ValueArgumentDescription 121Description = ConfigCommandStrings.SetCommand_GlobalArgumentDescription 125: base("set", ConfigCommandStrings.SetCommand_Description, configurationService, services) 153var key = await InteractionService.PromptForStringAsync(ConfigCommandStrings.SetCommand_PromptForKey, required: true, cancellationToken: cancellationToken); 154var value = await InteractionService.PromptForStringAsync(ConfigCommandStrings.SetCommand_PromptForValue, required: true, cancellationToken: cancellationToken); 156ConfigCommandStrings.SetCommand_PromptForGlobal, 158g => 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, 203Description = ConfigCommandStrings.ListCommand_AllOptionDescription 207: base("list", ConfigCommandStrings.ListCommand_Description, configurationService, services) 243InteractionService.DisplayMessage(KnownEmojis.Information, ConfigCommandStrings.NoConfigurationValuesFound); 248InteractionService.DisplayMarkupLine($" [dim]{ConfigCommandStrings.ListCommand_AllFeaturesHint.EscapeMarkup()}[/]"); 257var keyWidth = MaxWidth(ConfigCommandStrings.HeaderKey, localConfig.Keys, globalConfig.Keys); 258var valueWidth = MaxWidth(ConfigCommandStrings.HeaderValue, localConfig.Values, globalConfig.Values); 262ConfigCommandStrings.LocalConfigurationHeader, 264ConfigCommandStrings.NoLocalConfigurationFound, 272ConfigCommandStrings.GlobalConfigurationHeader, 274ConfigCommandStrings.NoGlobalConfigurationFound, 293InteractionService.DisplayMarkdown($"**{ConfigCommandStrings.AvailableFeaturesHeader}:**"); 304InteractionService.DisplayMarkupLine($" [dim]{ConfigCommandStrings.SetFeatureHint.EscapeMarkup()}[/]"); 308InteractionService.DisplayMarkupLine($" [dim]{ConfigCommandStrings.ListCommand_AllFeaturesHint.EscapeMarkup()}[/]"); 330table.AddBoldColumn(ConfigCommandStrings.HeaderKey, width: keyWidth); 331table.AddBoldColumn(ConfigCommandStrings.HeaderValue, width: valueWidth); 355Description = ConfigCommandStrings.DeleteCommand_KeyArgumentDescription 359Description = ConfigCommandStrings.DeleteCommand_GlobalArgumentDescription 363: base("delete", ConfigCommandStrings.DeleteCommand_Description, configurationService, services) 384var key = await InteractionService.PromptForStringAsync(ConfigCommandStrings.DeleteCommand_PromptForKey, required: true, cancellationToken: cancellationToken); 394ConfigCommandStrings.DeleteCommand_PromptForGlobal, 412InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeyDeletedGlobally, key)); 416InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeyDeletedLocally, key)); 440: base("info", ConfigCommandStrings.InfoCommand_Description, configurationService, services) 447Description = ConfigCommandStrings.InfoCommand_JsonOptionDescription 492InteractionService.DisplayMarkdown($"**{ConfigCommandStrings.InfoCommand_LocalSettingsPath}:**"); 495InteractionService.DisplayMarkdown($"**{ConfigCommandStrings.InfoCommand_GlobalSettingsPath}:**"); 498InteractionService.DisplayMarkdown($"**{ConfigCommandStrings.InfoCommand_AvailableFeatures}:**"); 504InteractionService.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);