From 615b158e9f191e87de7c2d85b1fd701de832bdda Mon Sep 17 00:00:00 2001 From: tommasodotnet Date: Thu, 16 Apr 2026 13:28:04 +0200 Subject: [PATCH] move Aspire.Hosting.AgentFramework.DevUI to dotnet/src Move the project from aspire-integration/ to src/ to be consistent with the location of all other projects in the repo. --- .gitignore | 1 + dotnet/agent-framework-dotnet.slnx | 5 ++--- dotnet/agent-framework-release.slnf | 2 +- .../DevUIIntegration.AppHost/DevUIIntegration.AppHost.csproj | 2 +- .../Aspire.Hosting.AgentFramework.DevUI/AgentEntityInfo.cs | 0 .../AgentFrameworkBuilderExtensions.cs | 0 .../AgentServiceAnnotation.cs | 0 .../Aspire.Hosting.AgentFramework.DevUI.csproj | 0 .../DevUIAggregatorHostedService.cs | 0 .../Aspire.Hosting.AgentFramework.DevUI/DevUIResource.cs | 0 .../Aspire.Hosting.AgentFramework.DevUI/README.md | 0 .../Aspire.Hosting.AgentFramework.DevUI.UnitTests.csproj | 2 +- 12 files changed, 6 insertions(+), 6 deletions(-) rename dotnet/{aspire-integration => src}/Aspire.Hosting.AgentFramework.DevUI/AgentEntityInfo.cs (100%) rename dotnet/{aspire-integration => src}/Aspire.Hosting.AgentFramework.DevUI/AgentFrameworkBuilderExtensions.cs (100%) rename dotnet/{aspire-integration => src}/Aspire.Hosting.AgentFramework.DevUI/AgentServiceAnnotation.cs (100%) rename dotnet/{aspire-integration => src}/Aspire.Hosting.AgentFramework.DevUI/Aspire.Hosting.AgentFramework.DevUI.csproj (100%) rename dotnet/{aspire-integration => src}/Aspire.Hosting.AgentFramework.DevUI/DevUIAggregatorHostedService.cs (100%) rename dotnet/{aspire-integration => src}/Aspire.Hosting.AgentFramework.DevUI/DevUIResource.cs (100%) rename dotnet/{aspire-integration => src}/Aspire.Hosting.AgentFramework.DevUI/README.md (100%) diff --git a/.gitignore b/.gitignore index 4994e9e2fe..2267fb20c4 100644 --- a/.gitignore +++ b/.gitignore @@ -235,3 +235,4 @@ python/dotnet-ref # Generated filtered solution files (created by eng/scripts/New-FilteredSolution.ps1) dotnet/filtered-*.slnx +**/*.lscache diff --git a/dotnet/agent-framework-dotnet.slnx b/dotnet/agent-framework-dotnet.slnx index 52472009de..1959c2513b 100644 --- a/dotnet/agent-framework-dotnet.slnx +++ b/dotnet/agent-framework-dotnet.slnx @@ -4,9 +4,8 @@ - - - + + diff --git a/dotnet/agent-framework-release.slnf b/dotnet/agent-framework-release.slnf index 466df77198..8cc97dc8cb 100644 --- a/dotnet/agent-framework-release.slnf +++ b/dotnet/agent-framework-release.slnf @@ -29,7 +29,7 @@ "src\\Microsoft.Agents.AI.Workflows.Generators\\Microsoft.Agents.AI.Workflows.Generators.csproj", "src\\Microsoft.Agents.AI.Workflows\\Microsoft.Agents.AI.Workflows.csproj", "src\\Microsoft.Agents.AI\\Microsoft.Agents.AI.csproj", - "aspire-integration\\Aspire.Hosting.AgentFramework.DevUI\\Aspire.Hosting.AgentFramework.DevUI.csproj" + "src\\Aspire.Hosting.AgentFramework.DevUI\\Aspire.Hosting.AgentFramework.DevUI.csproj" ] } } diff --git a/dotnet/samples/DevUIIntegration/DevUIIntegration.AppHost/DevUIIntegration.AppHost.csproj b/dotnet/samples/DevUIIntegration/DevUIIntegration.AppHost/DevUIIntegration.AppHost.csproj index b8f2f1757d..765adc4ba0 100644 --- a/dotnet/samples/DevUIIntegration/DevUIIntegration.AppHost/DevUIIntegration.AppHost.csproj +++ b/dotnet/samples/DevUIIntegration/DevUIIntegration.AppHost/DevUIIntegration.AppHost.csproj @@ -21,7 +21,7 @@ - + diff --git a/dotnet/aspire-integration/Aspire.Hosting.AgentFramework.DevUI/AgentEntityInfo.cs b/dotnet/src/Aspire.Hosting.AgentFramework.DevUI/AgentEntityInfo.cs similarity index 100% rename from dotnet/aspire-integration/Aspire.Hosting.AgentFramework.DevUI/AgentEntityInfo.cs rename to dotnet/src/Aspire.Hosting.AgentFramework.DevUI/AgentEntityInfo.cs diff --git a/dotnet/aspire-integration/Aspire.Hosting.AgentFramework.DevUI/AgentFrameworkBuilderExtensions.cs b/dotnet/src/Aspire.Hosting.AgentFramework.DevUI/AgentFrameworkBuilderExtensions.cs similarity index 100% rename from dotnet/aspire-integration/Aspire.Hosting.AgentFramework.DevUI/AgentFrameworkBuilderExtensions.cs rename to dotnet/src/Aspire.Hosting.AgentFramework.DevUI/AgentFrameworkBuilderExtensions.cs diff --git a/dotnet/aspire-integration/Aspire.Hosting.AgentFramework.DevUI/AgentServiceAnnotation.cs b/dotnet/src/Aspire.Hosting.AgentFramework.DevUI/AgentServiceAnnotation.cs similarity index 100% rename from dotnet/aspire-integration/Aspire.Hosting.AgentFramework.DevUI/AgentServiceAnnotation.cs rename to dotnet/src/Aspire.Hosting.AgentFramework.DevUI/AgentServiceAnnotation.cs diff --git a/dotnet/aspire-integration/Aspire.Hosting.AgentFramework.DevUI/Aspire.Hosting.AgentFramework.DevUI.csproj b/dotnet/src/Aspire.Hosting.AgentFramework.DevUI/Aspire.Hosting.AgentFramework.DevUI.csproj similarity index 100% rename from dotnet/aspire-integration/Aspire.Hosting.AgentFramework.DevUI/Aspire.Hosting.AgentFramework.DevUI.csproj rename to dotnet/src/Aspire.Hosting.AgentFramework.DevUI/Aspire.Hosting.AgentFramework.DevUI.csproj diff --git a/dotnet/aspire-integration/Aspire.Hosting.AgentFramework.DevUI/DevUIAggregatorHostedService.cs b/dotnet/src/Aspire.Hosting.AgentFramework.DevUI/DevUIAggregatorHostedService.cs similarity index 100% rename from dotnet/aspire-integration/Aspire.Hosting.AgentFramework.DevUI/DevUIAggregatorHostedService.cs rename to dotnet/src/Aspire.Hosting.AgentFramework.DevUI/DevUIAggregatorHostedService.cs diff --git a/dotnet/aspire-integration/Aspire.Hosting.AgentFramework.DevUI/DevUIResource.cs b/dotnet/src/Aspire.Hosting.AgentFramework.DevUI/DevUIResource.cs similarity index 100% rename from dotnet/aspire-integration/Aspire.Hosting.AgentFramework.DevUI/DevUIResource.cs rename to dotnet/src/Aspire.Hosting.AgentFramework.DevUI/DevUIResource.cs diff --git a/dotnet/aspire-integration/Aspire.Hosting.AgentFramework.DevUI/README.md b/dotnet/src/Aspire.Hosting.AgentFramework.DevUI/README.md similarity index 100% rename from dotnet/aspire-integration/Aspire.Hosting.AgentFramework.DevUI/README.md rename to dotnet/src/Aspire.Hosting.AgentFramework.DevUI/README.md diff --git a/dotnet/tests/Aspire.Hosting.AgentFramework.DevUI.UnitTests/Aspire.Hosting.AgentFramework.DevUI.UnitTests.csproj b/dotnet/tests/Aspire.Hosting.AgentFramework.DevUI.UnitTests/Aspire.Hosting.AgentFramework.DevUI.UnitTests.csproj index b2ea33c1ab..9c1f22aca3 100644 --- a/dotnet/tests/Aspire.Hosting.AgentFramework.DevUI.UnitTests/Aspire.Hosting.AgentFramework.DevUI.UnitTests.csproj +++ b/dotnet/tests/Aspire.Hosting.AgentFramework.DevUI.UnitTests/Aspire.Hosting.AgentFramework.DevUI.UnitTests.csproj @@ -13,7 +13,7 @@ - +