quickstarts/workflows/csharp/sdk
Ryan Lettieri 8e29320fa4
Update workflows/csharp/sdk/README.md
Co-authored-by: Chris Gillum <cgillum@gmail.com>
Signed-off-by: Ryan Lettieri <67934986+RyanLettieri@users.noreply.github.com>
2023-02-06 17:14:14 -07:00
..
order-processor Updating quickstart to use workflow engine client 2023-02-05 15:50:14 -07:00
README.md Update workflows/csharp/sdk/README.md 2023-02-06 17:14:14 -07:00
makefile Initial push for workflows quickstart 2023-02-05 10:16:05 -07:00

README.md

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