Elsa Workflow integration without ASP.NET #890
-
|
Hello, Is it possible to integrate Elsa Workflow in an application without using ASP.NET We use .NET and I know it's possible to use an applicatoin similar to this one with "HttpContext" (This is what we use). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
Sure, you can integrate it in pretty much any type of .NET application: Web, desktop, console, mobile, Raspberry etc. You won't be able to use the HTTP activities however, since they have a hard dependency on |
Beta Was this translation helpful? Give feedback.
Sure, you can integrate it in pretty much any type of .NET application: Web, desktop, console, mobile, Raspberry etc.
You won't be able to use the HTTP activities however, since they have a hard dependency on
Microsoft.AspNetCore.Mvc.Corefor controllers and middleware stuff. But you can always implement your own set of HTTP activities should you have a need for them (e.g. when using another type of web framework other than ASP.NET).