dotnet-sdk/examples
Whit Waldo 9d838fca9c
Added workflow sample: Task chaining (#1387)
* Added Workflow Task Chaining example to replace https://github.com/dapr/dotnet-sdk/pull/1206

Signed-off-by: Whit Waldo <whit.waldo@innovian.net>

* Targeting .NET 6, fixed transposition error

Signed-off-by: Whit Waldo <whit.waldo@innovian.net>

* Added missing copyright headers

Signed-off-by: Whit Waldo <whit.waldo@innovian.net>

---------

Signed-off-by: Whit Waldo <whit.waldo@innovian.net>
2024-11-14 10:26:25 -07:00
..
Actor Remove unused variables (#1314) 2024-10-24 15:27:39 -05:00
AspNetCore Remove unused using statements. (#1313) 2024-10-24 17:00:09 -05:00
Client Add .NET client for pub/sub support - streaming subscriptions (#1381) 2024-11-05 11:57:21 -06:00
GeneratedActor Incremental source generator for actors (#1334) 2024-10-28 09:20:31 -05:00
Jobs/JobsSample Add .NET client for Dapr Jobs API (#1384) 2024-11-01 12:08:59 -05:00
Workflow Added workflow sample: Task chaining (#1387) 2024-11-14 10:26:25 -07:00
.editorconfig SDK Docs (#572) 2021-02-16 22:15:33 -08:00
Directory.Build.props SDK Docs (#572) 2021-02-16 22:15:33 -08:00
README.md Additional API surface area for Dapr Workflow authoring SDK (#1012) 2023-01-24 15:41:56 -08:00

README.md

Dapr .NET Core examples

This repository contains a samples that highlight the Dapr .NET SDK capabilities:

Sample Description
1. Client The client example shows how to make Dapr calls to publish events, save state, get state and delete state using a Dapr client.
2. Actor Demonstrates creating virtual actors that encapsulate code and state.
3. ASP.NET Core Demonstrates ASP.NET Core integration with Dapr by creating Controllers and Routes.
4. Workflow Demonstrates creating durable, long-running Dapr workflows using code.