From 965cce0b50398a270caf3554b406a78e75848b28 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Tue, 21 Oct 2025 21:33:13 +0000 Subject: [PATCH] .NET Workflows - Remove debug file ParseValue.yaml from workflow-samples (#1608) * Initial plan * Remove ParseValue.yaml debug file from workflow-samples Co-authored-by: crickman <66376200+crickman@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: crickman <66376200+crickman@users.noreply.github.com> --- workflow-samples/ParseValue.yaml | 39 -------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 workflow-samples/ParseValue.yaml diff --git a/workflow-samples/ParseValue.yaml b/workflow-samples/ParseValue.yaml deleted file mode 100644 index ce41ccf610..0000000000 --- a/workflow-samples/ParseValue.yaml +++ /dev/null @@ -1,39 +0,0 @@ -kind: Workflow -trigger: - kind: OnConversationStart - id: workflow_demo - actions: - - - kind: SetVariable - id: set-variable-text - variable: Local.ItemsText - value: '["apple","banana","cat"]' - - - - kind: SendActivity - id: display-text - activity: |- - (1) - {Local.ItemsText} - - - kind: ParseValue - id: parse-list - variable: Local.ItemsList - value: =Local.ItemsText - valueType: Table - - - kind: SendActivity - id: display-list - activity: |- - (2) - {Local.ItemsList} - - - kind: Foreach - id: loop-list - items: =Local.ItemsList - value: Local.LoopValue - index: Local.LoopIndex - actions: - - kind: SendActivity - id: display-list-item - activity: "{Local.LoopValue} (x{Local.LoopIndex + 1})"