Skip to content

Commit 5bc845b

Browse files
committed
Updated version to 1.6.5 and simplified call to StartwWrkflow in samples 01 and 02
1 parent de7b37e commit 5bc845b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/WorkflowCore/WorkflowCore.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
1616
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
1717
<Description>Workflow Core is a light weight workflow engine targeting .NET Standard.</Description>
18-
<Version>1.6.4</Version>
19-
<AssemblyVersion>1.6.4.0</AssemblyVersion>
20-
<FileVersion>1.6.4.0</FileVersion>
18+
<Version>1.6.5</Version>
19+
<AssemblyVersion>1.6.5.0</AssemblyVersion>
20+
<FileVersion>1.6.5.0</FileVersion>
2121
<PackageReleaseNotes></PackageReleaseNotes>
2222
<PackageIconUrl>https://github.com/danielgerlag/workflow-core/raw/master/src/logo.png</PackageIconUrl>
2323
</PropertyGroup>

src/samples/WorkflowCore.Sample01/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public static void Main(string[] args)
2222
host.RegisterWorkflow<HelloWorldWorkflow>();
2323
host.Start();
2424

25-
host.StartWorkflow("HelloWorld", 1, null, null);
25+
host.StartWorkflow("HelloWorld");
2626

2727
Console.ReadLine();
2828
host.Stop();

src/samples/WorkflowCore.Sample02/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public static void Main(string[] args)
2121
host.RegisterWorkflow<SimpleDecisionWorkflow>();
2222
host.Start();
2323

24-
host.StartWorkflow("Simple Decision Workflow", 1, null, null);
24+
host.StartWorkflow("Simple Decision Workflow");
2525

2626
Console.ReadLine();
2727
host.Stop();

0 commit comments

Comments
 (0)