diff --git a/dotnet/samples/GettingStarted/Workflows/Declarative/GenerateCode/Program.cs b/dotnet/samples/GettingStarted/Workflows/Declarative/GenerateCode/Program.cs index 859b74b194..54c77d4077 100644 --- a/dotnet/samples/GettingStarted/Workflows/Declarative/GenerateCode/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/Declarative/GenerateCode/Program.cs @@ -42,7 +42,7 @@ private void Execute() Console.WriteLine(code); } - private const string DefaultWorkflow = "HelloWorld.yaml"; + private const string DefaultWorkflow = "Marketing.yaml"; private string WorkflowFile { get; } diff --git a/dotnet/samples/GettingStarted/Workflows/Declarative/README.md b/dotnet/samples/GettingStarted/Workflows/Declarative/README.md index 03023ea847..d2bbaa14a6 100644 --- a/dotnet/samples/GettingStarted/Workflows/Declarative/README.md +++ b/dotnet/samples/GettingStarted/Workflows/Declarative/README.md @@ -92,11 +92,11 @@ The repository has example workflows available in the root [`/workflow-samples`] 2. Run the demo referencing a sample workflow by name: ```sh - dotnet run HelloWorld + dotnet run Marketing ``` 3. Run the demo with a path to any workflow file: ```sh - dotnet run c:/myworkflows/HelloWorld.yaml + dotnet run c:/myworkflows/Marketing.yaml ``` diff --git a/workflow-samples/README.md b/workflow-samples/README.md index c5937760c2..438561f0a8 100644 --- a/workflow-samples/README.md +++ b/workflow-samples/README.md @@ -10,7 +10,7 @@ A _Declarative Workflow_ may be executed locally no different from any `Workflow The difference is that the workflow definition is loaded from a YAML file instead of being defined in code. ```c# -Workflow workflow = DeclarativeWorkflowBuilder.Build("HelloWorld.yaml", options); +Workflow workflow = DeclarativeWorkflowBuilder.Build("Marketing.yaml", options); ``` Workflows may also be hosted in your _Azure Foundry Project_.