16 references to Hidden
Aspire.Hosting (3)
ApplicationModel\CommandsConfigurationExtensions.cs (2)
42
return ResourceCommandState.
Hidden
;
75
return ResourceCommandState.
Hidden
;
Dashboard\proto\Partials.cs (1)
135
Hosting.ApplicationModel.ResourceCommandState.
Hidden
=> ResourceCommandState.Hidden,
Aspire.Hosting.Tests (13)
ResourceCommandAnnotationTests.cs (11)
14
[InlineData(KnownResourceCommands.StartCommand, "Stopping", ResourceCommandState.
Hidden
)]
15
[InlineData(KnownResourceCommands.StartCommand, "Running", ResourceCommandState.
Hidden
)]
24
[InlineData(KnownResourceCommands.StopCommand, "Starting", ResourceCommandState.
Hidden
)]
27
[InlineData(KnownResourceCommands.StopCommand, "Exited", ResourceCommandState.
Hidden
)]
28
[InlineData(KnownResourceCommands.StopCommand, "Finished", ResourceCommandState.
Hidden
)]
29
[InlineData(KnownResourceCommands.StopCommand, "FailedToStart", ResourceCommandState.
Hidden
)]
30
[InlineData(KnownResourceCommands.StopCommand, "Unknown", ResourceCommandState.
Hidden
)]
31
[InlineData(KnownResourceCommands.StopCommand, "Waiting", ResourceCommandState.
Hidden
)]
32
[InlineData(KnownResourceCommands.StopCommand, "RuntimeUnhealthy", ResourceCommandState.
Hidden
)]
33
[InlineData(KnownResourceCommands.StopCommand, "", ResourceCommandState.
Hidden
)]
34
[InlineData(KnownResourceCommands.StopCommand, null, ResourceCommandState.
Hidden
)]
WithHttpCommandTests.cs (2)
474
return enableCommand ? ResourceCommandState.Enabled : ResourceCommandState.
Hidden
;
506
Assert.Equal(ResourceCommandState.
Hidden
, commandState);