From 9ac1756937d4b030ccc02857cd263c48ea549a50 Mon Sep 17 00:00:00 2001 From: Alan Rynne Date: Fri, 27 Oct 2023 11:12:44 +0200 Subject: [PATCH] feat: Add return to Program.cs Main call --- SpeckleAutomateDotnetExample/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SpeckleAutomateDotnetExample/Program.cs b/SpeckleAutomateDotnetExample/Program.cs index 552eff9..0bac59a 100644 --- a/SpeckleAutomateDotnetExample/Program.cs +++ b/SpeckleAutomateDotnetExample/Program.cs @@ -1,6 +1,6 @@ using Speckle.Automate.Sdk; // WARNING do not delete this call, this is the actual execution of your function -await AutomationRunner +return await AutomationRunner .Main(args, AutomateFunction.Run) .ConfigureAwait(false);