Skip to content

Move aspire.config.json from AppHost subdirectories to playground app root#15516

Merged
adamint merged 1 commit intomicrosoft:mainfrom
adamint:dev/adamint/move-aspire-config-to-root
Mar 24, 2026
Merged

Move aspire.config.json from AppHost subdirectories to playground app root#15516
adamint merged 1 commit intomicrosoft:mainfrom
adamint:dev/adamint/move-aspire-config-to-root

Conversation

@adamint
Copy link
Member

@adamint adamint commented Mar 24, 2026

Description

Existing code works but I realize that the aspire.config.json should be in the parent folder instead of the apphost folder, since most people would be using as the working directory the parent folder instead of the apphost folder

… root

Move aspire.config.json files from AppHost project subdirectories to their
parent playground app root directories. The appHost.path is updated to include
the AppHost subdirectory prefix so the relative path to the project file
remains correct.

This aligns with the convention that aspire.config.json should live at the
solution/app root rather than inside individual AppHost project folders.
@adamint adamint requested a review from mitchdenny as a code owner March 24, 2026 01:07
Copilot AI review requested due to automatic review settings March 24, 2026 01:07
@github-actions
Copy link
Contributor

🚀 Dogfood this PR with:

⚠️ WARNING: Do not do this without first carefully reviewing the code of this PR to satisfy yourself it is safe.

curl -fsSL https://raw.githubusercontent.com/microsoft/aspire/main/eng/scripts/get-aspire-cli-pr.sh | bash -s -- 15516

Or

  • Run remotely in PowerShell:
iex "& { $(irm https://raw.githubusercontent.com/microsoft/aspire/main/eng/scripts/get-aspire-cli-pr.ps1) } 15516"

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Moves aspire.config.json files out of individual *.AppHost/ subdirectories into their corresponding playground app root directories, updating appHost.path so it continues to resolve correctly relative to the new config location.

Changes:

  • Relocated aspire.config.json from */<AppHostProject>/ to */ across playground apps.
  • Updated appHost.path values to include the AppHost subdirectory prefix (for both .NET .csproj AppHosts and TypeScript apphost.ts AppHosts).
  • Removed the now-redundant aspire.config.json files from the AppHost subdirectories.

Reviewed changes

Copilot reviewed 162 out of 162 changed files in this pull request and generated no comments.

Show a summary per file
File Description
playground/yarp/aspire.config.json New root-level config pointing at Yarp.AppHost/Yarp.AppHost.csproj.
playground/yarp/Yarp.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/withdockerfile/aspire.config.json New root-level config pointing at WithDockerfile.AppHost/WithDockerfile.AppHost.csproj.
playground/withdockerfile/WithDockerfile.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/webpubsub/aspire.config.json New root-level config pointing at WebPubSub.AppHost/WebPubSub.AppHost.csproj.
playground/webpubsub/WebPubSub.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/waitfor/aspire.config.json New root-level config pointing at WaitForSandbox.AppHost/WaitForSandbox.AppHost.csproj.
playground/waitfor/WaitForSandbox.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/signalr/aspire.config.json New root-level config pointing at SignalR.AppHost/SignalR.AppHost.csproj.
playground/signalr/SignalR.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/seq/aspire.config.json New root-level config pointing at Seq.AppHost/Seq.AppHost.csproj.
playground/seq/Seq.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/python/aspire.config.json New root-level config pointing at Python.AppHost/Python.AppHost.csproj.
playground/python/Python.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/publishers/aspire.config.json New root-level config pointing at Publishers.AppHost/Publishers.AppHost.csproj.
playground/publishers/Publishers.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/polyglot/TypeScript/Aspire.Hosting/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts relative to config location.
playground/polyglot/TypeScript/Aspire.Hosting.Yarp/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Valkey/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.SqlServer/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Seq/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Redis/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.RabbitMQ/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Qdrant/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Python/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.PostgreSQL/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Orleans/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Oracle/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.OpenAI/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Nats/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.MySql/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.MongoDB/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Milvus/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Maui/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Kubernetes/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Keycloak/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Kafka/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.JavaScript/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.GitHub.Models/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Garnet/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Foundry/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Docker/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.DevTunnels/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.WebPubSub/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.Storage/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.Sql/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.SignalR/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.ServiceBus/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.Search/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.Redis/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.PostgreSQL/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.OperationalInsights/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.Kusto/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.KeyVault/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.Functions/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.EventHubs/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.CosmosDB/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.ContainerRegistry/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.CognitiveServices/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.ApplicationInsights/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.AppService/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.AppContainers/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/polyglot/TypeScript/Aspire.Hosting.Azure.AppConfiguration/aspire.config.json Updated TS AppHost path to ValidationAppHost/apphost.ts.
playground/pipelines/aspire.config.json New root-level config pointing at Pipelines.AppHost/Pipelines.AppHost.csproj.
playground/pipelines/Pipelines.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/orleans/aspire.config.json New root-level config pointing at Orleans.AppHost/Orleans.AppHost.csproj.
playground/orleans/Orleans.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/nats/aspire.config.json New root-level config pointing at Nats.AppHost/Nats.AppHost.csproj.
playground/nats/Nats.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/mysql/aspire.config.json New root-level config pointing at MySqlDb.AppHost/MySqlDb.AppHost.csproj.
playground/mysql/MySqlDb.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/mongo/aspire.config.json New root-level config pointing at Mongo.AppHost/Mongo.AppHost.csproj.
playground/mongo/Mongo.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/milvus/aspire.config.json New root-level config pointing at MilvusPlayground.AppHost/MilvusPlayground.AppHost.csproj.
playground/milvus/MilvusPlayground.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/keycloak/aspire.config.json New root-level config pointing at Keycloak.AppHost/Keycloak.AppHost.csproj.
playground/keycloak/Keycloak.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/kafka/aspire.config.json New root-level config pointing at KafkaBasic.AppHost/KafkaBasic.AppHost.csproj.
playground/kafka/KafkaBasic.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/deployers/aspire.config.json New root-level config pointing at Deployers.AppHost/Deployers.AppHost.csproj.
playground/deployers/Deployers.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/cdk/aspire.config.json New root-level config pointing at CdkSample.AppHost/CdkSample.AppHost.csproj.
playground/cdk/CdkSample.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/bicep/aspire.config.json New root-level config pointing at BicepSample.AppHost/BicepSample.AppHost.csproj.
playground/bicep/BicepSample.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/TestShop/aspire.config.json New root-level config pointing at TestShop.AppHost/TestShop.AppHost.csproj.
playground/TestShop/TestShop.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/Stress/aspire.config.json New root-level config pointing at Stress.AppHost/Stress.AppHost.csproj.
playground/Stress/Stress.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/SqlServerEndToEnd/aspire.config.json New root-level config pointing at SqlServerEndToEnd.AppHost/SqlServerEndToEnd.AppHost.csproj.
playground/SqlServerEndToEnd/SqlServerEndToEnd.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/SimplePipelines/aspire.config.json New root-level config pointing at SimplePipelines.AppHost/SimplePipelines.AppHost.csproj.
playground/SimplePipelines/SimplePipelines.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/Redis/aspire.config.json New root-level config pointing at Redis.AppHost/Redis.AppHost.csproj.
playground/Redis/Redis.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/Qdrant/aspire.config.json New root-level config pointing at Qdrant.AppHost/Qdrant.AppHost.csproj.
playground/Qdrant/Qdrant.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/ProxylessEndToEnd/aspire.config.json New root-level config pointing at ProxylessEndToEnd.AppHost/ProxylessEndToEnd.AppHost.csproj.
playground/ProxylessEndToEnd/ProxylessEndToEnd.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/PostgresEndToEnd/aspire.config.json New root-level config pointing at PostgresEndToEnd.AppHost/PostgresEndToEnd.AppHost.csproj.
playground/PostgresEndToEnd/PostgresEndToEnd.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/ParameterEndToEnd/aspire.config.json New root-level config pointing at ParameterEndToEnd.AppHost/ParameterEndToEnd.AppHost.csproj.
playground/ParameterEndToEnd/ParameterEndToEnd.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/OracleEndToEnd/aspire.config.json New root-level config pointing at OracleEndToEnd.AppHost/OracleEndToEnd.AppHost.csproj.
playground/OracleEndToEnd/OracleEndToEnd.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/OpenAIEndToEnd/aspire.config.json New root-level config pointing at OpenAIEndToEnd.AppHost/OpenAIEndToEnd.AppHost.csproj.
playground/OpenAIEndToEnd/OpenAIEndToEnd.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/HealthChecks/aspire.config.json New root-level config pointing at HealthChecksSandbox.AppHost/HealthChecksSandbox.AppHost.csproj.
playground/HealthChecks/HealthChecksSandbox.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/GitHubModelsEndToEnd/aspire.config.json New root-level config pointing at GitHubModelsEndToEnd.AppHost/GitHubModelsEndToEnd.AppHost.csproj.
playground/GitHubModelsEndToEnd/GitHubModelsEndToEnd.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/FoundryEndToEnd/aspire.config.json New root-level config pointing at FoundryEndToEnd.AppHost/FoundryEndToEnd.AppHost.csproj.
playground/FoundryEndToEnd/FoundryEndToEnd.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/FoundryAgentEnterprise/aspire.config.json New root-level config pointing at FoundryAgentEnterprise.AppHost/FoundryAgentEnterprise.AppHost.csproj.
playground/FoundryAgentEnterprise/FoundryAgentEnterprise.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/FoundryAgentBasic/aspire.config.json New root-level config pointing at FoundryAgentBasic.AppHost/FoundryAgentBasic.AppHost.csproj.
playground/FoundryAgentBasic/FoundryAgentBasic.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/ExternalServices/aspire.config.json New root-level config pointing at ExternalServices.AppHost/ExternalServices.AppHost.csproj.
playground/ExternalServices/ExternalServices.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/DotnetTool/aspire.config.json New root-level config pointing at DotnetTool.AppHost/DotnetTool.AppHost.csproj.
playground/DotnetTool/DotnetTool.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/DevTunnels/aspire.config.json New root-level config pointing at DevTunnels.AppHost/DevTunnels.AppHost.csproj.
playground/DevTunnels/DevTunnels.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/DatabaseMigration/aspire.config.json New root-level config pointing at DatabaseMigration.AppHost/DatabaseMigration.AppHost.csproj.
playground/DatabaseMigration/DatabaseMigration.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/CustomResources/aspire.config.json New root-level config pointing at CustomResources.AppHost/CustomResources.AppHost.csproj.
playground/CustomResources/CustomResources.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/CosmosEndToEnd/aspire.config.json New root-level config pointing at CosmosEndToEnd.AppHost/CosmosEndToEnd.AppHost.csproj.
playground/CosmosEndToEnd/CosmosEndToEnd.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/BrowserTelemetry/aspire.config.json New root-level config pointing at BrowserTelemetry.AppHost/BrowserTelemetry.AppHost.csproj.
playground/BrowserTelemetry/BrowserTelemetry.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/AzureVirtualNetworkEndToEnd/aspire.config.json New root-level config pointing at AzureVirtualNetworkEndToEnd.AppHost/AzureVirtualNetworkEndToEnd.AppHost.csproj.
playground/AzureVirtualNetworkEndToEnd/AzureVirtualNetworkEndToEnd.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/AzureStorageEndToEnd/aspire.config.json New root-level config pointing at AzureStorageEndToEnd.AppHost/AzureStorageEndToEnd.AppHost.csproj.
playground/AzureStorageEndToEnd/AzureStorageEndToEnd.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/AzureServiceBus/aspire.config.json New root-level config pointing at ServiceBus.AppHost/ServiceBus.AppHost.csproj.
playground/AzureServiceBus/ServiceBus.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/AzureSearchEndToEnd/aspire.config.json New root-level config pointing at AzureSearch.AppHost/AzureSearch.AppHost.csproj.
playground/AzureSearchEndToEnd/AzureSearch.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/AzureOpenAIEndToEnd/aspire.config.json New root-level config pointing at AzureOpenAIEndToEnd.AppHost/AzureOpenAIEndToEnd.AppHost.csproj.
playground/AzureOpenAIEndToEnd/AzureOpenAIEndToEnd.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/AzureKusto/aspire.config.json New root-level config pointing at AzureKusto.AppHost/AzureKusto.AppHost.csproj.
playground/AzureKusto/AzureKusto.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/AzureFunctionsEndToEnd/aspire.config.json New root-level config pointing at AzureFunctionsEndToEnd.AppHost/AzureFunctionsEndToEnd.AppHost.csproj.
playground/AzureFunctionsEndToEnd/AzureFunctionsEndToEnd.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/AzureDataLakeEndToEnd/aspire.config.json New root-level config pointing at AzureDataLakeEndToEnd.AppHost/AzureDataLakeEndToEnd.AppHost.csproj.
playground/AzureDataLakeEndToEnd/AzureDataLakeEndToEnd.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/AzureContainerApps/aspire.config.json New root-level config pointing at AzureContainerApps.AppHost/AzureContainerApps.AppHost.csproj.
playground/AzureContainerApps/AzureContainerApps.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/AzureAppService/aspire.config.json New root-level config pointing at AzureAppService.AppHost/AzureAppService.AppHost.csproj.
playground/AzureAppService/AzureAppService.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/AzureAppConfiguration/aspire.config.json New root-level config pointing at AzureAppConfiguration.AppHost/AzureAppConfiguration.AppHost.csproj.
playground/AzureAppConfiguration/AzureAppConfiguration.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/AspireWithNode/aspire.config.json New root-level config pointing at AspireWithNode.AppHost/AspireWithNode.AppHost.csproj.
playground/AspireWithNode/AspireWithNode.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/AspireWithMaui/aspire.config.json New root-level config pointing at AspireWithMaui.AppHost/AspireWithMaui.AppHost.csproj.
playground/AspireWithMaui/AspireWithMaui.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/AspireWithJavaScript/aspire.config.json New root-level config pointing at AspireJavaScript.AppHost/AspireJavaScript.AppHost.csproj.
playground/AspireWithJavaScript/AspireJavaScript.AppHost/aspire.config.json Removed config from AppHost subdirectory.
playground/AspireEventHub/aspire.config.json New root-level config pointing at EventHubs.AppHost/EventHubs.AppHost.csproj.
playground/AspireEventHub/EventHubs.AppHost/aspire.config.json Removed config from AppHost subdirectory.

@adamint adamint merged commit 536b08c into microsoft:main Mar 24, 2026
501 of 505 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants