22 writes to Name
Aspire.Cli.Tests (22)
Backchannel\ResourceSnapshotMapperTests.cs (19)
51Name = "stop", 78new ResourceSnapshotCommand { Name = "start", State = "Disabled", Description = "Start" }, 79new ResourceSnapshotCommand { Name = "save", State = "Hidden", Description = "Save parameter" }, 80new ResourceSnapshotCommand { Name = "dashboard-only", State = "Enabled", Description = "UI only", Visibility = KnownCommandVisibility.UI }, 81new ResourceSnapshotCommand { Name = "missing-visibility", State = "Enabled", Description = "Missing visibility", Visibility = null! } 141new ResourceSnapshotCommand { Name = "restart", State = KnownCommandState.Enabled, Description = "Restart" }, 142new ResourceSnapshotCommand { Name = "start", State = KnownCommandState.Disabled, Description = "Start" }, 143new ResourceSnapshotCommand { Name = "save", State = KnownCommandState.Hidden, Description = "Save parameter" } 165new ResourceSnapshotCommand { Name = "api-only", State = KnownCommandState.Enabled, Description = "API only", Visibility = KnownCommandVisibility.Api }, 166new ResourceSnapshotCommand { Name = "ui-only", State = KnownCommandState.Enabled, Description = "UI only", Visibility = KnownCommandVisibility.UI }, 167new ResourceSnapshotCommand { Name = "ui-disabled", State = KnownCommandState.Disabled, Description = "UI disabled", Visibility = KnownCommandVisibility.UI } 191new ResourceSnapshotCommand { Name = "set-parameter", State = KnownCommandState.Enabled, Description = "Set", Visibility = KnownCommandVisibility.Api }, 192new ResourceSnapshotCommand { Name = "custom-action", State = KnownCommandState.Enabled, Description = "Custom", Visibility = KnownCommandVisibility.Api }, 193new ResourceSnapshotCommand { Name = "delete-parameter", State = KnownCommandState.Enabled, Description = "Delete", Visibility = KnownCommandVisibility.Api } 219new ResourceSnapshotCommand { Name = "set-parameter", State = KnownCommandState.Enabled, Description = "Set", Visibility = KnownCommandVisibility.Api }, 220new ResourceSnapshotCommand { Name = "custom-action", State = KnownCommandState.Enabled, Description = "Custom", Visibility = KnownCommandVisibility.Api }, 221new ResourceSnapshotCommand { Name = "delete-parameter", State = KnownCommandState.Enabled, Description = "Delete", Visibility = KnownCommandVisibility.Api } 248Name = "login", 291Name = "custom-command",
Commands\DescribeCommandTests.cs (2)
481Name = "restart", 488Name = "repair",
Commands\ResourceCommandTests.cs (1)
2353Name = name,
6 references to Name
aspire (6)
Backchannel\ResourceSnapshotMapper.cs (2)
118.OrderBy(c => c.command.Name) 120c => c.command.Name,
Commands\ResourceCommand.cs (4)
230.FirstOrDefault(command => string.Equals(command.Name, lookupCommandName, StringComparisons.CommandName)); 241.GroupBy(static command => command.Name, StringComparers.CommandName) 758writer.WriteLine(command.Description is { Length: > 0 } ? command.Description : command.DisplayName ?? command.Name); 762string.Format(CultureInfo.CurrentCulture, ResourceCommandStrings.CommandSpecificHelpUsageSyntax, resourceName, command.Name));