9 references to Id
aspire (9)
Commands\PublishCommandBase.cs (9)
254
if (!steps.TryGetValue(activity.Data.
Id
, out var stepInfo))
263
Id = activity.Data.
Id
,
269
steps[activity.Data.
Id
] = stepInfo;
305
throw new InvalidOperationException($"Step activity with ID '{activity.Data.
Id
}' is not complete. Expected it to be complete before processing tasks.");
315
throw new InvalidOperationException($"Task activity with ID '{activity.Data.
Id
}' is not associated with the current step '{currentStepProgress.Step?.Id}'.");
322
if (!tasks.TryGetValue(activity.Data.
Id
, out var task))
326
Id = activity.Data.
Id
,
331
tasks[activity.Data.
Id
] = task;
340
throw new InvalidOperationException($"Task with ID '{activity.Data.
Id
}' does not have an associated ProgressTask.");