17 references to ConfigCommandStrings
aspire (17)
Commands\ConfigCommand.cs (16)
23
: base("config",
ConfigCommandStrings
.Description, features, updateNotifier, executionContext, interactionService)
58
: base("get",
ConfigCommandStrings
.GetCommand_Description, features, updateNotifier, executionContext, interactionService)
64
Description =
ConfigCommandStrings
.GetCommand_KeyArgumentDescription
100
: base("set",
ConfigCommandStrings
.SetCommand_Description, features, updateNotifier, executionContext, interactionService)
106
Description =
ConfigCommandStrings
.SetCommand_KeyArgumentDescription
112
Description =
ConfigCommandStrings
.SetCommand_ValueArgumentDescription
118
Description =
ConfigCommandStrings
.SetCommand_GlobalArgumentDescription
147
? string.Format(CultureInfo.CurrentCulture,
ConfigCommandStrings
.ConfigurationKeySetGlobally, key,
149
: string.Format(CultureInfo.CurrentCulture,
ConfigCommandStrings
.ConfigurationKeySetLocally, key,
167
: base("list",
ConfigCommandStrings
.ListCommand_Description, features, updateNotifier, executionContext, interactionService)
180
InteractionService.DisplayMessage("information",
ConfigCommandStrings
.NoConfigurationValuesFound);
198
: base("delete",
ConfigCommandStrings
.DeleteCommand_Description, features, updateNotifier, executionContext, interactionService)
204
Description =
ConfigCommandStrings
.DeleteCommand_KeyArgumentDescription
210
Description =
ConfigCommandStrings
.DeleteCommand_GlobalArgumentDescription
237
InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture,
ConfigCommandStrings
.ConfigurationKeyDeletedGlobally, key));
241
InteractionService.DisplaySuccess(string.Format(CultureInfo.CurrentCulture,
ConfigCommandStrings
.ConfigurationKeyDeletedLocally, key));
Resources\ConfigCommandStrings.Designer.cs (1)
31
System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Aspire.Cli.Resources.ConfigCommandStrings", typeof(
ConfigCommandStrings
).Assembly);