ServerlessWorkflow.Sdk
0.8.1.6
Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package ServerlessWorkflow.Sdk --version 0.8.1.6
NuGet\Install-Package ServerlessWorkflow.Sdk -Version 0.8.1.6
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ServerlessWorkflow.Sdk" Version="0.8.1.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ServerlessWorkflow.Sdk" Version="0.8.1.6" />
<PackageReference Include="ServerlessWorkflow.Sdk" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ServerlessWorkflow.Sdk --version 0.8.1.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ServerlessWorkflow.Sdk, 0.8.1.6"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package ServerlessWorkflow.Sdk@0.8.1.6
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ServerlessWorkflow.Sdk&version=0.8.1.6
#tool nuget:?package=ServerlessWorkflow.Sdk&version=0.8.1.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Serverless Workflow Specification - .NET SDK
Provides .NET 6.0 API/SPI and Model Validation for the Serverless Workflow Specification
With the SDK, you can:
- Read and write workflow JSON and YAML definitions
- Programmatically build workflow definitions
- Validate workflow definitions (both schema and DSL integrity validation)
Status
Latest Releases | Conformance to spec version |
---|---|
0.8.0.10 | v0.8 |
Getting Started
dotnet nuget add package ServerlessWorkflow.Sdk
services.AddServerlessWorkflow();
How to use
Building workflows programatically
var workflow = WorkflowDefinition.Create("MyWorkflow", "MyWorkflow", "1.0")
.StartsWith("inject", flow =>
flow.Inject(new { username = "test", password = "123456" }))
.Then("operation", flow =>
flow.Execute("fakeApiFunctionCall", action =>
{
action.Invoke(function =>
function.WithName("fakeFunction")
.SetOperationUri(new Uri("https://fake.com/swagger.json#fake")))
.WithArgument("username", "${ .username }")
.WithArgument("password", "${ .password }");
})
.Execute("fakeEventTrigger", action =>
{
action
.Consume(e =>
e.WithName("fakeEvent")
.WithSource(new Uri("https://fakesource.com"))
.WithType("fakeType"))
.ThenProduce(e =>
e.WithName("otherEvent")
.WithSource(new Uri("https://fakesource.com"))
.WithType("fakeType"));
}))
.End()
.Build();
Reading workflows
var reader = WorkflowReader.Create();
using(Stream stream = File.OpenRead("myWorkflow.json"))
{
var definition = reader.Read(stream, WorkflowDefinitionFormat.Json);
}
Writing workflows
var writer = WorkflowWriter.Create();
using(Stream stream = new MemoryStream())
{
writer.Write(workflow, stream);
stream.Flush();
stream.Position = 0;
using(StreamReader reader = new StreamReader(stream))
{
var yaml = reader.ReadToEnd();
Console.WriteLine(yaml);
Console.ReadLine();
}
}
Validating workflows
var validator = serviceProvider.GetRequiredService<IValidator<WorkflowDefinition>>();
var validationResult = validator.Validate(myWorkflow);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- CloudNative.CloudEvents (>= 2.2.0)
- FluentValidation.DependencyInjectionExtensions (>= 10.4.0)
- Iso8601DurationHelper (>= 1.0.5)
- Microsoft.Extensions.DependencyInjection (>= 6.0.0)
- Microsoft.Extensions.Http (>= 6.0.0)
- Microsoft.Extensions.Options (>= 6.0.0)
- Neuroglia.Serialization.Dynamic (>= 2.0.1.57)
- Neuroglia.Serialization.Json (>= 2.0.1.57)
- Neuroglia.Serialization.NewtonsoftJson (>= 2.0.1.57)
- Neuroglia.Serialization.Protobuf (>= 2.0.1.57)
- Neuroglia.Serialization.YamlDotNet (>= 2.0.1.57)
- Newtonsoft.Json (>= 13.0.1)
- Newtonsoft.Json.Schema (>= 3.0.14)
- Octokit (>= 0.50.0)
- protobuf-net.Core (>= 3.0.101)
- YamlDotNet (>= 11.2.1)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on ServerlessWorkflow.Sdk:
Package | Downloads |
---|---|
Synapse.Integration
This package contains everything you need to integrate Synapse WFMS and its APIs |
|
ServerlessWorkflow.Sdk.IO
Contains services used to read and write ServerlessWorkflow workflow definitions |
|
ServerlessWorkflow.Sdk.Builders
Contains services used to build ServerlessWorkflow workflow definitions programatically |
|
Synapse.Sdk
Contains the definitions for all resources used by Synapse |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on ServerlessWorkflow.Sdk:
Repository | Stars |
---|---|
serverlessworkflow/synapse
Serverless Workflow Management System (WFMS)
|
Version | Downloads | Last Updated | |
---|---|---|---|
1.0.1 | 754 | 3/14/2025 | |
1.0.0 | 1,081 | 1/30/2025 | |
1.0.0-alpha6.3 | 299 | 1/16/2025 | |
1.0.0-alpha6.2 | 113 | 1/10/2025 | |
1.0.0-alpha6.1 | 101 | 1/10/2025 | |
1.0.0-alpha6 | 144 | 1/10/2025 | |
1.0.0-alpha5.4 | 102 | 12/19/2024 | |
1.0.0-alpha5.3 | 95 | 12/19/2024 | |
1.0.0-alpha5.2 | 247 | 11/20/2024 | |
1.0.0-alpha5.1 | 903 | 10/25/2024 | |
1.0.0-alpha5 | 424 | 10/22/2024 | |
1.0.0-alpha4.1 | 110 | 10/22/2024 | |
1.0.0-alpha4 | 228 | 10/18/2024 | |
1.0.0-alpha3.1 | 113 | 10/18/2024 | |
1.0.0-alpha3 | 547 | 10/11/2024 | |
1.0.0-alpha2.16 | 590 | 10/1/2024 | |
1.0.0-alpha2.15 | 646 | 9/8/2024 | |
1.0.0-alpha2.14 | 114 | 9/6/2024 | |
1.0.0-alpha2.13 | 111 | 9/6/2024 | |
1.0.0-alpha2.12 | 227 | 8/30/2024 | |
1.0.0-alpha2.11 | 182 | 8/21/2024 | |
1.0.0-alpha2.10 | 130 | 8/21/2024 | |
1.0.0-alpha2.9 | 122 | 8/21/2024 | |
1.0.0-alpha2.8 | 168 | 8/9/2024 | |
1.0.0-alpha2.7 | 112 | 8/8/2024 | |
1.0.0-alpha2.6 | 118 | 6/27/2024 | |
1.0.0-alpha2.5 | 158 | 6/26/2024 | |
1.0.0-alpha2.4 | 98 | 6/26/2024 | |
1.0.0-alpha2.3 | 96 | 6/26/2024 | |
1.0.0-alpha2.2 | 108 | 6/25/2024 | |
1.0.0-alpha2.1 | 118 | 6/21/2024 | |
1.0.0-alpha2 | 174 | 6/19/2024 | |
1.0.0-alpha1 | 307 | 5/22/2024 | |
0.8.8 | 395 | 1/4/2024 | |
0.8.7 | 869 | 6/29/2023 | |
0.8.6 | 489 | 11/30/2022 | |
0.8.5 | 465 | 11/18/2022 | |
0.8.4 | 16,310 | 11/4/2022 | |
0.8.3 | 8,499 | 10/26/2022 | |
0.8.2 | 540 | 9/30/2022 | |
0.8.1.16 | 4,961 | 9/28/2022 | |
0.8.1.15 | 1,811 | 9/22/2022 | |
0.8.1.14 | 4,131 | 9/9/2022 | |
0.8.1.13 | 533 | 9/7/2022 | |
0.8.1.12 | 505 | 9/7/2022 | |
0.8.1.11 | 6,653 | 8/30/2022 | |
0.8.1.10 | 3,002 | 8/23/2022 | |
0.8.1.9 | 565 | 8/23/2022 | |
0.8.1.8 | 4,277 | 8/11/2022 | |
0.8.1.7 | 1,789 | 8/9/2022 | |
0.8.1.6 | 1,960 | 5/20/2022 | |
0.8.1.5 | 563 | 5/20/2022 | |
0.8.1.4 | 609 | 5/18/2022 | |
0.8.1.3 | 571 | 5/17/2022 | |
0.8.1.2 | 588 | 5/17/2022 | |
0.8.1.1 | 545 | 5/17/2022 | |
0.8.1 | 557 | 5/16/2022 | |
0.8.0.22 | 562 | 5/16/2022 | |
0.8.0.21 | 648 | 5/10/2022 | |
0.8.0.20 | 795 | 4/14/2022 | |
0.8.0.19 | 721 | 4/14/2022 | |
0.8.0.18 | 561 | 4/14/2022 | |
0.8.0.17 | 579 | 4/13/2022 | |
0.8.0.16 | 565 | 4/13/2022 | |
0.8.0.15 | 723 | 3/7/2022 | |
0.8.0.14 | 570 | 3/7/2022 | |
0.8.0.13 | 588 | 3/3/2022 | |
0.8.0.12 | 567 | 3/2/2022 | |
0.8.0.11 | 600 | 2/25/2022 | |
0.8.0.10 | 599 | 2/24/2022 | |
0.8.0.9 | 614 | 2/24/2022 | |
0.8.0.8 | 571 | 2/23/2022 | |
0.8.0.7 | 550 | 2/23/2022 | |
0.8.0.6 | 586 | 2/22/2022 | |
0.8.0.5 | 564 | 2/21/2022 | |
0.8.0.4 | 571 | 2/21/2022 | |
0.8.0.3 | 589 | 2/18/2022 | |
0.8.0.2 | 586 | 2/15/2022 | |
0.8.0.1 | 561 | 2/14/2022 | |
0.8.0 | 592 | 2/14/2022 | |
0.7.4.4 | 538 | 7/2/2021 | |
0.7.4.3 | 496 | 7/2/2021 | |
0.7.4.2 | 458 | 7/2/2021 | |
0.7.4.1 | 431 | 7/1/2021 | |
0.7.4 | 472 | 7/1/2021 | |
0.7.3 | 448 | 6/16/2021 | |
0.7.2 | 487 | 6/8/2021 | |
0.7.1 | 491 | 6/3/2021 | |
0.7.0 | 449 | 6/2/2021 | |
0.6.3 | 514 | 5/27/2021 | |
0.6.2 | 480 | 5/27/2021 | |
0.6.1 | 944 | 4/19/2021 | |
0.6.0 | 516 | 4/3/2021 |