From c1e45e0ae17a7f8b5c0fc24f59f215ba0f92d840 Mon Sep 17 00:00:00 2001 From: weibaohui Date: Fri, 26 Apr 2024 11:35:42 +0800 Subject: [PATCH] fix type error fix type error --- src/samples/WorkflowCore.Sample09s/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/samples/WorkflowCore.Sample09s/Program.cs b/src/samples/WorkflowCore.Sample09s/Program.cs index 09e04abb8..2c60afe02 100644 --- a/src/samples/WorkflowCore.Sample09s/Program.cs +++ b/src/samples/WorkflowCore.Sample09s/Program.cs @@ -16,7 +16,7 @@ public static void Main(string[] args) host.Start(); Console.WriteLine("Starting workflow..."); - string workflowId = host.StartWorkflow("Foreach").Result; + string workflowId = host.StartWorkflow("ForeachSync").Result; Console.ReadLine(); @@ -41,4 +41,4 @@ private static IServiceProvider ConfigureServices() } } -} \ No newline at end of file +}