Skip to content

Commit

Permalink
Updated version to 1.6.5 and simplified call to StartwWrkflow in samp…
Browse files Browse the repository at this point in the history
…les 01 and 02
  • Loading branch information
Miggleness committed Jul 18, 2018
1 parent de7b37e commit 5bc845b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/WorkflowCore/WorkflowCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<Description>Workflow Core is a light weight workflow engine targeting .NET Standard.</Description>
<Version>1.6.4</Version>
<AssemblyVersion>1.6.4.0</AssemblyVersion>
<FileVersion>1.6.4.0</FileVersion>
<Version>1.6.5</Version>
<AssemblyVersion>1.6.5.0</AssemblyVersion>
<FileVersion>1.6.5.0</FileVersion>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageIconUrl>https://github.com/danielgerlag/workflow-core/raw/master/src/logo.png</PackageIconUrl>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/samples/WorkflowCore.Sample01/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public static void Main(string[] args)
host.RegisterWorkflow<HelloWorldWorkflow>();
host.Start();

host.StartWorkflow("HelloWorld", 1, null, null);
host.StartWorkflow("HelloWorld");

Console.ReadLine();
host.Stop();
Expand Down
2 changes: 1 addition & 1 deletion src/samples/WorkflowCore.Sample02/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static void Main(string[] args)
host.RegisterWorkflow<SimpleDecisionWorkflow>();
host.Start();

host.StartWorkflow("Simple Decision Workflow", 1, null, null);
host.StartWorkflow("Simple Decision Workflow");

Console.ReadLine();
host.Stop();
Expand Down

0 comments on commit 5bc845b

Please sign in to comment.