Elsa Core is a workflows library that enables workflow execution in any .NET Core application. Workflows can be defined using code and using the visual workflow designer. Documentation can be found [here](https://v2.elsaworkflows.io/). Getting Started: dotnet new console -n MyConsoleApp cd MyConsoleApp dotnet add package Elsa Create a new file called HelloWorldWorkflow.cs and add the following: using Elsa.Activities.Console; using Elsa.Builders; namespace MyConsoleApp { public class HelloWorld : IWorkflow { p