Skip to content

Commit b64103b

Browse files
Merge branch 'master' into master
2 parents 106283b + 07243cd commit b64103b

File tree

395 files changed

+340
-1123
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

395 files changed

+340
-1123
lines changed

src/WorkflowCore.DSL/Models/DefinitionSource.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42

53
namespace WorkflowCore.Models.DefinitionStorage
64
{

src/WorkflowCore.DSL/Models/Envelope.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42

53
namespace WorkflowCore.Models.DefinitionStorage
64
{

src/WorkflowCore.DSL/Models/v1/MappingSourceV1.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42

53
namespace WorkflowCore.Models.DefinitionStorage.v1
64
{

src/WorkflowCore.DSL/Models/v1/StepSourceV1.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using System;
22
using System.Collections.Generic;
33
using System.Dynamic;
4-
using System.Text;
54

65
namespace WorkflowCore.Models.DefinitionStorage.v1
76
{

src/WorkflowCore.DSL/ServiceCollectionExtensions.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
using System;
2-
using System.Collections.Generic;
32
using System.Linq;
4-
using System.Threading.Tasks;
5-
using Microsoft.Extensions.DependencyInjection;
63
using WorkflowCore.Interface;
74
using WorkflowCore.Services.DefinitionStorage;
85

src/WorkflowCore.DSL/Services/DefinitionLoader.cs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
1-
using Newtonsoft.Json;
2-
using System;
1+
using System;
32
using System.Collections;
43
using System.Collections.Generic;
54
using System.Linq;
65
using System.Linq.Dynamic.Core;
76
using System.Linq.Expressions;
87
using System.Reflection;
9-
using System.Text;
108
using Newtonsoft.Json.Linq;
119
using WorkflowCore.Interface;
1210
using WorkflowCore.Models;
1311
using WorkflowCore.Primitives;
14-
using WorkflowCore.Models.DefinitionStorage;
1512
using WorkflowCore.Models.DefinitionStorage.v1;
1613
using WorkflowCore.Exceptions;
1714

@@ -250,7 +247,7 @@ private void AttachOutputs(StepSourceV1 source, Type dataType, Type stepType, Wo
250247
private void AttachOutcomes(StepSourceV1 source, Type dataType, WorkflowStep step)
251248
{
252249
if (!string.IsNullOrEmpty(source.NextStepId))
253-
step.Outcomes.Add(new ValueOutcome() { ExternalNextStepId = $"{source.NextStepId}" });
250+
step.Outcomes.Add(new ValueOutcome { ExternalNextStepId = $"{source.NextStepId}" });
254251

255252
var dataParameter = Expression.Parameter(dataType, "data");
256253
var outcomeParameter = Expression.Parameter(typeof(object), "outcome");

src/WorkflowCore/Exceptions/WorkflowDefinitionLoadException.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42

53
namespace WorkflowCore.Exceptions
64
{

src/WorkflowCore/Interface/IActivityController.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42
using System.Threading.Tasks;
53

64
namespace WorkflowCore.Interface

src/WorkflowCore/Interface/ICancellationProcessor.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42
using WorkflowCore.Models;
53

64
namespace WorkflowCore.Interface

src/WorkflowCore/Interface/ILifeCycleEventHub.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
42
using System.Threading.Tasks;
53
using WorkflowCore.Models.LifeCycleEvents;
64

0 commit comments

Comments
 (0)