Configuration
Global
services.Configure<IncidentOptions>(options =>
{
options.DefaultIncidentStrategy = typeof(ContinueWithIncidentsStrategy);
});Workflow Specific
public class MyWorkflow : WorkflowBase
{
protected override void Build(IWorkflowBuilder builder)
{
builder.WorkflowOptions.IncidentStrategyType = typeof(ContinueWithIncidentsStrategy);
}
}
Last updated