{"id":31821372,"url":"https://github.com/serverlessworkflow/sdk-net","last_synced_at":"2026-04-15T10:02:57.530Z","repository":{"id":40244947,"uuid":"352628548","full_name":"serverlessworkflow/sdk-net","owner":"serverlessworkflow","description":".NET SDK for Serverless Workflow","archived":false,"fork":false,"pushed_at":"2026-04-08T15:50:05.000Z","size":1650,"stargazers_count":59,"open_issues_count":1,"forks_count":15,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-04-08T17:21:26.008Z","etag":null,"topics":["cncf","dotnet","sdk","serverless","workflow"],"latest_commit_sha":null,"homepage":"https://serverlessworkflow.io","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/serverlessworkflow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"code-of-conduct.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":"MAINTAINERS.md","copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-03-29T12:04:45.000Z","updated_at":"2026-01-21T05:12:17.000Z","dependencies_parsed_at":"2024-01-04T10:38:01.971Z","dependency_job_id":"ae44b345-9b7f-4091-b628-842ac7ecb1c8","html_url":"https://github.com/serverlessworkflow/sdk-net","commit_stats":null,"previous_names":[],"tags_count":91,"template":false,"template_full_name":null,"purl":"pkg:github/serverlessworkflow/sdk-net","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverlessworkflow%2Fsdk-net","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverlessworkflow%2Fsdk-net/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverlessworkflow%2Fsdk-net/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverlessworkflow%2Fsdk-net/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/serverlessworkflow","download_url":"https://codeload.github.com/serverlessworkflow/sdk-net/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/serverlessworkflow%2Fsdk-net/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31835820,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T07:17:56.427Z","status":"ssl_error","status_checked_at":"2026-04-15T07:17:30.007Z","response_time":63,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cncf","dotnet","sdk","serverless","workflow"],"created_at":"2025-10-11T13:24:02.303Z","updated_at":"2026-04-15T10:02:57.494Z","avatar_url":"https://github.com/serverlessworkflow.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Serverless Workflow .NET SDK\n\nThe official .NET SDK for the [Serverless Workflow DSL](https://github.com/serverlessworkflow/specification/blob/main/dsl.md).\n\nThe SDK is composed of three Nuget packages:\n\n- [Core](#), which contains the models of the Serverless Workflow DSL\n- [Builders](#), which contains service used to build workflow definitions programmatically\n- [IO](#), which contains the services used to read and write workflow definitions\n\n## Installation\n\nCore:\n\n```bash\ndotnet add package ServerlessWorkflow.Sdk\n```\n\nBuilders:\n\n```\ndotnet add package ServerlessWorkflow.Sdk.Builders\n```\n\nIO:\n\n```\ndotnet add package ServerlessWorkflow.Sdk.IO\n```\n\n## Example usage\n\nBuilding a workflow definition programmatically:\n\n```c#\nvar definition = new WorkflowDefinitionBuilder()\n    .WithName(\"fake-workflow\")\n    .WithVersion(\"0.1.0:fake\")\n    .Do(\"todo-1\", task =\u003e task\n        .Call(\"http\")\n        .With(\"method\", \"get\")\n        .With(\"uri\", \"https://fake-api.com\"))\n    .Build();\n```\n\nReading and writing a workflow definition:\n\n```c#\nusing var inputStream = File.OpenRead(\"workflow.yaml\");\nvar reader = WorkflowDefinitionReader.Create();\nvar workflow = await reader.ReadAsync(inputStream);\n\nusing var outputStream = File.Create(\"workflow.yaml\");\nvar writer = WorkflowDefinitionWriter.Create();\nawait writer.WriteAsync(workflow, stream, WorkflowDefinitionFormat.Yaml);\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fserverlessworkflow%2Fsdk-net","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fserverlessworkflow%2Fsdk-net","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fserverlessworkflow%2Fsdk-net/lists"}