44 references to ConfigCommandStrings
aspire (44)
Commands\ConfigCommand.cs (43)
27: base("config", ConfigCommandStrings.Description, features, updateNotifier, executionContext, interactionService, telemetry) 57ConfigCommandStrings.ExtensionActionPrompt, 73Description = ConfigCommandStrings.GetCommand_KeyArgumentDescription 77: base("get", ConfigCommandStrings.GetCommand_Description, features, updateNotifier, configurationService, executionContext, interactionService, telemetry) 98var key = await InteractionService.PromptForStringAsync(ConfigCommandStrings.GetCommand_PromptForKey, required: true, cancellationToken: cancellationToken); 123Description = ConfigCommandStrings.SetCommand_KeyArgumentDescription 127Description = ConfigCommandStrings.SetCommand_ValueArgumentDescription 131Description = ConfigCommandStrings.SetCommand_GlobalArgumentDescription 135: base("set", ConfigCommandStrings.SetCommand_Description, features, updateNotifier, configurationService, executionContext, interactionService, telemetry) 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, 205Description = ConfigCommandStrings.ListCommand_AllOptionDescription 209: base("list", ConfigCommandStrings.ListCommand_Description, features, updateNotifier, configurationService, executionContext, interactionService, telemetry) 245InteractionService.DisplayMessage(KnownEmojis.Information, ConfigCommandStrings.NoConfigurationValuesFound); 252var keyWidth = MaxWidth(ConfigCommandStrings.HeaderKey, localConfig.Keys, globalConfig.Keys); 253var valueWidth = MaxWidth(ConfigCommandStrings.HeaderValue, localConfig.Values, globalConfig.Values); 257ConfigCommandStrings.LocalConfigurationHeader, 259ConfigCommandStrings.NoLocalConfigurationFound, 267ConfigCommandStrings.GlobalConfigurationHeader, 269ConfigCommandStrings.NoGlobalConfigurationFound, 286InteractionService.DisplayMarkdown($"**{ConfigCommandStrings.AvailableFeaturesHeader}:**"); 297InteractionService.DisplayMarkupLine($" [dim]{ConfigCommandStrings.SetFeatureHint.EscapeMarkup()}[/]"); 301InteractionService.DisplayMarkupLine($" [dim]{ConfigCommandStrings.ListCommand_AllFeaturesHint.EscapeMarkup()}[/]"); 323table.AddBoldColumn(ConfigCommandStrings.HeaderKey, width: keyWidth); 324table.AddBoldColumn(ConfigCommandStrings.HeaderValue, width: valueWidth); 348Description = ConfigCommandStrings.DeleteCommand_KeyArgumentDescription 352Description = ConfigCommandStrings.DeleteCommand_GlobalArgumentDescription 356: base("delete", ConfigCommandStrings.DeleteCommand_Description, features, updateNotifier, configurationService, executionContext, interactionService, telemetry) 380var key = await InteractionService.PromptForStringAsync(ConfigCommandStrings.DeleteCommand_PromptForKey, required: true, cancellationToken: cancellationToken); 390ConfigCommandStrings.DeleteCommand_PromptForGlobal, 408InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeyDeletedGlobally, key)); 412InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture, ConfigCommandStrings.ConfigurationKeyDeletedLocally, key)); 436: base("info", ConfigCommandStrings.InfoCommand_Description, features, updateNotifier, configurationService, executionContext, interactionService, telemetry) 443Description = ConfigCommandStrings.InfoCommand_JsonOptionDescription 489InteractionService.DisplayMarkdown($"**{ConfigCommandStrings.InfoCommand_LocalSettingsPath}:**"); 492InteractionService.DisplayMarkdown($"**{ConfigCommandStrings.InfoCommand_GlobalSettingsPath}:**"); 495InteractionService.DisplayMarkdown($"**{ConfigCommandStrings.InfoCommand_AvailableFeatures}:**"); 501InteractionService.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);