File tree Expand file tree Collapse file tree 9 files changed +14
-14
lines changed
extensions/WorkflowCore.Users Expand file tree Collapse file tree 9 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ public override ExecutionResult Run(IStepExecutionContext context)
15
15
{
16
16
if ( Condition )
17
17
{
18
- return ExecutionResult . Branch ( new List < object > ( ) { null } , new ControlPersistenceData ( ) { ChildrenActive = true } ) ;
18
+ return ExecutionResult . Branch ( new List < object > ( ) { context . Item } , new ControlPersistenceData ( ) { ChildrenActive = true } ) ;
19
19
}
20
20
21
21
return ExecutionResult . Next ( ) ;
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ public override ExecutionResult Run(IStepExecutionContext context)
12
12
{
13
13
if ( context . PersistenceData == null )
14
14
{
15
- var result = ExecutionResult . Branch ( new List < object > ( ) { null } , new ControlPersistenceData ( ) { ChildrenActive = true } ) ;
15
+ var result = ExecutionResult . Branch ( new List < object > ( ) { context . Item } , new ControlPersistenceData ( ) { ChildrenActive = true } ) ;
16
16
result . OutcomeValue = GetPreviousOutcome ( context ) ;
17
17
return result ;
18
18
}
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ public override ExecutionResult Run(IStepExecutionContext context)
20
20
{
21
21
if ( ! ( ( SchedulePersistenceData ) context . PersistenceData ) . Elapsed )
22
22
{
23
- return ExecutionResult . Branch ( new List < object > ( ) { null } , new SchedulePersistenceData ( ) { Elapsed = true } ) ;
23
+ return ExecutionResult . Branch ( new List < object > ( ) { context . Item } , new SchedulePersistenceData ( ) { Elapsed = true } ) ;
24
24
}
25
25
26
26
if ( context . Workflow . IsBranchComplete ( context . ExecutionPointer . Id ) )
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ public override ExecutionResult Run(IStepExecutionContext context)
11
11
{
12
12
if ( context . PersistenceData == null )
13
13
{
14
- return ExecutionResult . Branch ( new List < object > ( ) { null } , new ControlPersistenceData ( ) { ChildrenActive = true } ) ;
14
+ return ExecutionResult . Branch ( new List < object > ( ) { context . Item } , new ControlPersistenceData ( ) { ChildrenActive = true } ) ;
15
15
}
16
16
17
17
if ( ( context . PersistenceData is ControlPersistenceData ) && ( ( context . PersistenceData as ControlPersistenceData ) . ChildrenActive ) )
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public override ExecutionResult Run(IStepExecutionContext context)
25
25
26
26
if ( context . PersistenceData == null )
27
27
{
28
- return ExecutionResult . Branch ( new List < object > ( ) { null } , new ControlPersistenceData ( ) { ChildrenActive = true } ) ;
28
+ return ExecutionResult . Branch ( new List < object > ( ) { context . Item } , new ControlPersistenceData ( ) { ChildrenActive = true } ) ;
29
29
}
30
30
31
31
if ( ( context . PersistenceData is ControlPersistenceData ) && ( ( context . PersistenceData as ControlPersistenceData ) . ChildrenActive ) )
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ public override ExecutionResult Run(IStepExecutionContext context)
15
15
{
16
16
if ( Condition )
17
17
{
18
- return ExecutionResult . Branch ( new List < object > ( ) { null } , new ControlPersistenceData ( ) { ChildrenActive = true } ) ;
18
+ return ExecutionResult . Branch ( new List < object > ( ) { context . Item } , new ControlPersistenceData ( ) { ChildrenActive = true } ) ;
19
19
}
20
20
21
21
return ExecutionResult . Next ( ) ;
Original file line number Diff line number Diff line change 15
15
<GenerateAssemblyCompanyAttribute >false</GenerateAssemblyCompanyAttribute >
16
16
<GenerateAssemblyProductAttribute >false</GenerateAssemblyProductAttribute >
17
17
<Description >Workflow Core is a light weight workflow engine targeting .NET Standard.</Description >
18
- <Version >3.2.5 </Version >
19
- <AssemblyVersion >3.2.5 .0</AssemblyVersion >
20
- <FileVersion >3.2.5 .0</FileVersion >
18
+ <Version >3.2.6 </Version >
19
+ <AssemblyVersion >3.2.6 .0</AssemblyVersion >
20
+ <FileVersion >3.2.6 .0</FileVersion >
21
21
<PackageReleaseNotes ></PackageReleaseNotes >
22
22
<PackageIconUrl >https://github.com/danielgerlag/workflow-core/raw/master/src/logo.png</PackageIconUrl >
23
- <PackageVersion >3.2.5 </PackageVersion >
23
+ <PackageVersion >3.2.6 </PackageVersion >
24
24
</PropertyGroup >
25
25
26
26
<ItemGroup >
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public override ExecutionResult Run(IStepExecutionContext context)
50
50
51
51
if ( context . PersistenceData == null )
52
52
{
53
- var result = ExecutionResult . Branch ( new List < object > ( ) { null } , new ControlPersistenceData ( ) { ChildrenActive = true } ) ;
53
+ var result = ExecutionResult . Branch ( new List < object > ( ) { context . Item } , new ControlPersistenceData ( ) { ChildrenActive = true } ) ;
54
54
result . OutcomeValue = action . OutcomeValue ;
55
55
return result ;
56
56
}
Original file line number Diff line number Diff line change 15
15
<GenerateAssemblyCompanyAttribute >false</GenerateAssemblyCompanyAttribute >
16
16
<GenerateAssemblyProductAttribute >false</GenerateAssemblyProductAttribute >
17
17
<Description >Provides extensions for Workflow Core to enable human workflows.</Description >
18
- <Version >2.1.0 </Version >
19
- <AssemblyVersion >2.1.0 .0</AssemblyVersion >
20
- <FileVersion >2.1.0 .0</FileVersion >
18
+ <Version >2.1.1 </Version >
19
+ <AssemblyVersion >2.1.1 .0</AssemblyVersion >
20
+ <FileVersion >2.1.1 .0</FileVersion >
21
21
</PropertyGroup >
22
22
23
23
<ItemGroup >
You can’t perform that action at this time.
0 commit comments