Merge branch 'main' into crickman/dotnet-sample-improvements

This commit is contained in:
Chris Rickman
2026-02-19 18:39:21 -08:00
96 changed files with 424 additions and 464 deletions
@@ -27,7 +27,7 @@ public static class Program
// Build the workflow by connecting executors sequentially
var workflow = new WorkflowBuilder(fileRead)
.AddFanOutEdge(fileRead, [wordCount, paragraphCount])
.AddFanInEdge([wordCount, paragraphCount], aggregate)
.AddFanInBarrierEdge([wordCount, paragraphCount], aggregate)
.WithOutputFrom(aggregate)
.Build();