quickstarts/workflows/csharp/sdk/README.md

1005 B

Dapr workflows

In this quickstart, you'll create a simple console application to demonstrate Dapr's workflow programming model and the workflow management API. The console app starts and manages the lifecycle of a workflow that stores and retrieves data in a Dapr state store.

This quickstart includes one project:

  • .NET console app order-processor

Run the order processor workflow

  1. Open a new terminal window and navigate to order-processor directory:
cd ./order-processor
dotnet restore
dotnet build
  1. Run the Dotnet service app with Dapr:
cd ./order-processor
dapr run dotnet run