9 references to Finished
Aspire.Hosting (5)
ApplicationModel\CustomResourceSnapshot.cs (2)
303
public static readonly string Finished = nameof(
Finished
);
313
public static readonly IReadOnlyList<string> TerminalStates = [
Finished
, FailedToStart, Exited];
ApplicationModel\ResourceNotificationService.cs (3)
141
else if (snapshot.State!.Text == KnownResourceStates.
Finished
|| snapshot.State!.Text == KnownResourceStates.Exited)
166
snapshot.State?.Text == KnownResourceStates.
Finished
||
209
else if ((snapshot.State!.Text == KnownResourceStates.
Finished
|| snapshot.State!.Text == KnownResourceStates.Exited) && snapshot.ExitCode is not null && snapshot.ExitCode != exitCode)
Aspire.Hosting.Tests (4)
WaitForTests.cs (4)
156
State = KnownResourceStates.
Finished
,
204
State = KnownResourceStates.
Finished
,
252
State = KnownResourceStates.
Finished
,
333
State = KnownResourceStates.
Finished