6 references to NotStarted
aspire (6)
Processes\IsolatedProcess.cs (6)
118private int _lifecycleState = (int)LifecycleState.NotStarted; 261case LifecycleState.NotStarted: 262if (Interlocked.CompareExchange(ref _lifecycleState, (int)LifecycleState.Disposed, (int)LifecycleState.NotStarted) == (int)LifecycleState.NotStarted) 311var previousState = (LifecycleState)Interlocked.CompareExchange(ref _lifecycleState, (int)LifecycleState.Starting, (int)LifecycleState.NotStarted); 312if (previousState != LifecycleState.NotStarted)