Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/Aspire.Hosting.Kubernetes/KubernetesGatewayExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
// The .NET Foundation licenses this file to you under the MIT license.

using Aspire.Hosting.ApplicationModel;
using Aspire.Hosting.Kubernetes;

namespace Aspire.Hosting.Kubernetes;
namespace Aspire.Hosting;
Comment on lines 4 to +7

Copilot AI Apr 30, 2026

Copy link

Choose a reason for hiding this comment

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

This namespace move changes the public API surface. The generated API baseline file (src/Aspire.Hosting.Kubernetes/api/Aspire.Hosting.Kubernetes.cs) should be regenerated/updated so it reflects KubernetesGatewayExtensions under the new Aspire.Hosting namespace (and doesn’t continue to omit these APIs), otherwise API review artifacts and baseline checks will be inaccurate.

Copilot uses AI. Check for mistakes.

/// <summary>
/// Provides extension methods for configuring Kubernetes Gateway API resources in the Aspire application model.
Expand Down
3 changes: 2 additions & 1 deletion src/Aspire.Hosting.Kubernetes/KubernetesIngressExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
// The .NET Foundation licenses this file to you under the MIT license.

using Aspire.Hosting.ApplicationModel;
using Aspire.Hosting.Kubernetes;

namespace Aspire.Hosting.Kubernetes;
namespace Aspire.Hosting;
Comment on lines 4 to +7

Copilot AI Apr 30, 2026

Copy link

Choose a reason for hiding this comment

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

This namespace move changes the public API surface. The generated API baseline file (src/Aspire.Hosting.Kubernetes/api/Aspire.Hosting.Kubernetes.cs) should be regenerated/updated so it reflects KubernetesIngressExtensions under the new Aspire.Hosting namespace (and doesn’t continue to omit these APIs), otherwise API review artifacts and baseline checks will be inaccurate.

Copilot uses AI. Check for mistakes.

/// <summary>
/// Provides extension methods for configuring Kubernetes Ingress resources in the Aspire application model.
Expand Down
Loading