File: ContainerAppCustomizationAnnotation.cs
Web Access
Project: src\src\Aspire.Hosting.Azure.ContainerApps\Aspire.Hosting.Azure.ContainerApps.csproj (Aspire.Hosting.Azure.ContainerApps)
#pragma warning disable AZPROVISION001
 
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Aspire.Hosting.ApplicationModel;
using Azure.Provisioning.AppContainers;
 
namespace Aspire.Hosting.Azure;
 
internal sealed class ContainerAppCustomizationAnnotation(Action<ResourceModuleConstruct, ContainerApp> configure) : IResourceAnnotation
{
    public Action<ResourceModuleConstruct, ContainerApp> Configure { get; } = configure;
}