From 7cd45e313b01a02968913b9c87b67f58d0d3fcc2 Mon Sep 17 00:00:00 2001
From: Chris <66376200+crickman@users.noreply.github.com>
Date: Fri, 19 Sep 2025 10:40:51 -0700
Subject: [PATCH] .NET Workflows - Rename folder containing sample workflows
(#836)
* coolio
* Update dotnet/samples/GettingStarted/Workflows/Declarative/README.md
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
---
dotnet/agent-framework-dotnet.slnx | 12 ++++++------
.../GettingStarted/Workflows/Declarative/README.md | 2 +-
{workflows => workflow-samples}/DeepResearch.yaml | 0
{workflows => workflow-samples}/HumanInLoop.yaml | 0
{workflows => workflow-samples}/Marketing.yaml | 0
{workflows => workflow-samples}/MathChat.yaml | 0
{workflows => workflow-samples}/README.md | 0
{workflows => workflow-samples}/setup/.gitignore | 0
.../setup/AnalystAgent.yaml | 0
.../setup/CoderAgent.yaml | 0
{workflows => workflow-samples}/setup/Create.ps1 | 0
.../setup/CreateAgents/CreateAgents.csproj | 0
.../setup/CreateAgents/CreateAgents.slnx | 0
.../setup/CreateAgents/Program.cs | 0
.../setup/CreateAgents/nuget.config | 0
.../setup/ManagerAgent.yaml | 0
.../setup/QuestionAgent.yaml | 0
{workflows => workflow-samples}/setup/README.md | 0
.../setup/StudentAgent.yaml | 0
.../setup/TeacherAgent.yaml | 0
.../setup/WeatherAgent.yaml | 0
{workflows => workflow-samples}/setup/WebAgent.yaml | 0
{workflows => workflow-samples}/wttr.json | 0
23 files changed, 7 insertions(+), 7 deletions(-)
rename {workflows => workflow-samples}/DeepResearch.yaml (100%)
rename {workflows => workflow-samples}/HumanInLoop.yaml (100%)
rename {workflows => workflow-samples}/Marketing.yaml (100%)
rename {workflows => workflow-samples}/MathChat.yaml (100%)
rename {workflows => workflow-samples}/README.md (100%)
rename {workflows => workflow-samples}/setup/.gitignore (100%)
rename {workflows => workflow-samples}/setup/AnalystAgent.yaml (100%)
rename {workflows => workflow-samples}/setup/CoderAgent.yaml (100%)
rename {workflows => workflow-samples}/setup/Create.ps1 (100%)
rename {workflows => workflow-samples}/setup/CreateAgents/CreateAgents.csproj (100%)
rename {workflows => workflow-samples}/setup/CreateAgents/CreateAgents.slnx (100%)
rename {workflows => workflow-samples}/setup/CreateAgents/Program.cs (100%)
rename {workflows => workflow-samples}/setup/CreateAgents/nuget.config (100%)
rename {workflows => workflow-samples}/setup/ManagerAgent.yaml (100%)
rename {workflows => workflow-samples}/setup/QuestionAgent.yaml (100%)
rename {workflows => workflow-samples}/setup/README.md (100%)
rename {workflows => workflow-samples}/setup/StudentAgent.yaml (100%)
rename {workflows => workflow-samples}/setup/TeacherAgent.yaml (100%)
rename {workflows => workflow-samples}/setup/WeatherAgent.yaml (100%)
rename {workflows => workflow-samples}/setup/WebAgent.yaml (100%)
rename {workflows => workflow-samples}/wttr.json (100%)
diff --git a/dotnet/agent-framework-dotnet.slnx b/dotnet/agent-framework-dotnet.slnx
index c9d8067e2d..f799bc6df6 100644
--- a/dotnet/agent-framework-dotnet.slnx
+++ b/dotnet/agent-framework-dotnet.slnx
@@ -79,12 +79,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/dotnet/samples/GettingStarted/Workflows/Declarative/README.md b/dotnet/samples/GettingStarted/Workflows/Declarative/README.md
index 0ddda6992d..9b8702fa6a 100644
--- a/dotnet/samples/GettingStarted/Workflows/Declarative/README.md
+++ b/dotnet/samples/GettingStarted/Workflows/Declarative/README.md
@@ -66,7 +66,7 @@ This will create the agents used in the sample workflows in your Azure Foundry P
## Execution
Run the demo from the console by specifying a path to a declarative (YAML) workflow file.
-The repository has example workflows available in the root [`/workflows`](../../../../../workflows) folder.
+The repository has example workflows available in the root [`/workflow-samples`](../../../../../workflow-samples) folder.
1. From the root of the repository, navigate the console to the project folder:
diff --git a/workflows/DeepResearch.yaml b/workflow-samples/DeepResearch.yaml
similarity index 100%
rename from workflows/DeepResearch.yaml
rename to workflow-samples/DeepResearch.yaml
diff --git a/workflows/HumanInLoop.yaml b/workflow-samples/HumanInLoop.yaml
similarity index 100%
rename from workflows/HumanInLoop.yaml
rename to workflow-samples/HumanInLoop.yaml
diff --git a/workflows/Marketing.yaml b/workflow-samples/Marketing.yaml
similarity index 100%
rename from workflows/Marketing.yaml
rename to workflow-samples/Marketing.yaml
diff --git a/workflows/MathChat.yaml b/workflow-samples/MathChat.yaml
similarity index 100%
rename from workflows/MathChat.yaml
rename to workflow-samples/MathChat.yaml
diff --git a/workflows/README.md b/workflow-samples/README.md
similarity index 100%
rename from workflows/README.md
rename to workflow-samples/README.md
diff --git a/workflows/setup/.gitignore b/workflow-samples/setup/.gitignore
similarity index 100%
rename from workflows/setup/.gitignore
rename to workflow-samples/setup/.gitignore
diff --git a/workflows/setup/AnalystAgent.yaml b/workflow-samples/setup/AnalystAgent.yaml
similarity index 100%
rename from workflows/setup/AnalystAgent.yaml
rename to workflow-samples/setup/AnalystAgent.yaml
diff --git a/workflows/setup/CoderAgent.yaml b/workflow-samples/setup/CoderAgent.yaml
similarity index 100%
rename from workflows/setup/CoderAgent.yaml
rename to workflow-samples/setup/CoderAgent.yaml
diff --git a/workflows/setup/Create.ps1 b/workflow-samples/setup/Create.ps1
similarity index 100%
rename from workflows/setup/Create.ps1
rename to workflow-samples/setup/Create.ps1
diff --git a/workflows/setup/CreateAgents/CreateAgents.csproj b/workflow-samples/setup/CreateAgents/CreateAgents.csproj
similarity index 100%
rename from workflows/setup/CreateAgents/CreateAgents.csproj
rename to workflow-samples/setup/CreateAgents/CreateAgents.csproj
diff --git a/workflows/setup/CreateAgents/CreateAgents.slnx b/workflow-samples/setup/CreateAgents/CreateAgents.slnx
similarity index 100%
rename from workflows/setup/CreateAgents/CreateAgents.slnx
rename to workflow-samples/setup/CreateAgents/CreateAgents.slnx
diff --git a/workflows/setup/CreateAgents/Program.cs b/workflow-samples/setup/CreateAgents/Program.cs
similarity index 100%
rename from workflows/setup/CreateAgents/Program.cs
rename to workflow-samples/setup/CreateAgents/Program.cs
diff --git a/workflows/setup/CreateAgents/nuget.config b/workflow-samples/setup/CreateAgents/nuget.config
similarity index 100%
rename from workflows/setup/CreateAgents/nuget.config
rename to workflow-samples/setup/CreateAgents/nuget.config
diff --git a/workflows/setup/ManagerAgent.yaml b/workflow-samples/setup/ManagerAgent.yaml
similarity index 100%
rename from workflows/setup/ManagerAgent.yaml
rename to workflow-samples/setup/ManagerAgent.yaml
diff --git a/workflows/setup/QuestionAgent.yaml b/workflow-samples/setup/QuestionAgent.yaml
similarity index 100%
rename from workflows/setup/QuestionAgent.yaml
rename to workflow-samples/setup/QuestionAgent.yaml
diff --git a/workflows/setup/README.md b/workflow-samples/setup/README.md
similarity index 100%
rename from workflows/setup/README.md
rename to workflow-samples/setup/README.md
diff --git a/workflows/setup/StudentAgent.yaml b/workflow-samples/setup/StudentAgent.yaml
similarity index 100%
rename from workflows/setup/StudentAgent.yaml
rename to workflow-samples/setup/StudentAgent.yaml
diff --git a/workflows/setup/TeacherAgent.yaml b/workflow-samples/setup/TeacherAgent.yaml
similarity index 100%
rename from workflows/setup/TeacherAgent.yaml
rename to workflow-samples/setup/TeacherAgent.yaml
diff --git a/workflows/setup/WeatherAgent.yaml b/workflow-samples/setup/WeatherAgent.yaml
similarity index 100%
rename from workflows/setup/WeatherAgent.yaml
rename to workflow-samples/setup/WeatherAgent.yaml
diff --git a/workflows/setup/WebAgent.yaml b/workflow-samples/setup/WebAgent.yaml
similarity index 100%
rename from workflows/setup/WebAgent.yaml
rename to workflow-samples/setup/WebAgent.yaml
diff --git a/workflows/wttr.json b/workflow-samples/wttr.json
similarity index 100%
rename from workflows/wttr.json
rename to workflow-samples/wttr.json