Skip to content

Commit

Permalink
upgrade nuget for console demo
Browse files Browse the repository at this point in the history
  • Loading branch information
kbilsted committed Oct 22, 2023
1 parent cc756a3 commit 9fc14ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="GreenFeetWorkFlow" Version="0.8.0.4" />
<PackageReference Include="GreenFeetWorkFlow" Version="1.0.0.1" />

<!--
<ProjectReference Include="..\..\Product\GreenFeetWorkFlow\GreenFeetWorkFlow.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion src/Demos/GreenFeetWorkFlow.ConsoleDemo/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
var engine = new WorkflowEngine(logger, iocContainer, formatter);

// step 3. add a step to be executed - this step will spawn new steps during processing
engine.Data.AddStep(new Step(FetchData.Name, 0));
await engine.Data.AddStepAsync(new Step(FetchData.Name, 0));

// step 4. GO!
engine.Start(new WorkflowConfiguration(new WorkerConfig { StopWhenNoWork = true }, NumberOfWorkers: 1));
Expand Down

0 comments on commit 9fc14ff

Please sign in to comment.