7 writes to ExitCode
Aspire.Hosting (3)
Dcp\ApplicationExecutor.cs (3)
622ExitCode = container.Status?.ExitCode is null or Conventions.UnknownExitCode ? null : container.Status.ExitCode, 685ExitCode = executable.Status?.ExitCode, 705ExitCode = executable.Status?.ExitCode,
Aspire.Hosting.Tests (4)
ResourceNotificationTests.cs (1)
373await notificationService.PublishUpdateAsync(resource1, snapshot => snapshot with { ExitCode = 0 }).DefaultTimeout();
WaitForTests.cs (3)
157ExitCode = 0 205ExitCode = 0 253ExitCode = 3 // Exit code does not match expected exit code above intentionally.
3 references to ExitCode
Aspire.Hosting (3)
ApplicationModel\ResourceNotificationService.cs (2)
228snapshot.ExitCode is not null; 383newState.ExitCode, string.Join(", ", newState.EnvironmentVariables.Select(e => $"{e.Name} = {e.Value}")), string.Join(", ", newState.Urls.Select(u => $"{u.Name} = {u.Url}")),
Dashboard\DashboardServiceData.cs (1)
48ExitCode = snapshot.ExitCode,