# LegacyRecipeEntryConstruct

- Kind: `class`
- Package: [Aspire.Hosting.Radius](/reference/api/csharp/aspire.hosting.radius.md)
- Version: `13.5.3-preview.1.26425.3`
- Namespace: `Aspire.Hosting.Radius.Publishing.Constructs`
- Target framework: `net10.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/b5f143315ffb6968ea939a9978797a5b20e4c688/src/Aspire.Hosting.Radius/Publishing/Constructs/LegacyRecipeEntryConstruct.cs)
- Inherits: `ProvisionableConstruct`

Represents an individual recipe entry nested inside a legacy `Applications.Core/environments` `properties.recipes` block. Uses the original legacy schema keys `templateKind` / `templatePath` (the new `recipeKind` / `recipeLocation` keys are only valid on `Radius.Core/recipePacks`).

## Definition

```csharp
namespace Aspire.Hosting.Radius.Publishing.Constructs;

public sealed class LegacyRecipeEntryConstruct
    : Azure.Provisioning.Primitives.ProvisionableConstruct
{
    // ...
}
```

## Constructors

- [LegacyRecipeEntryConstruct](/reference/api/csharp/aspire.hosting.radius/legacyrecipeentryconstruct/constructors.md#constructor)

## Properties

- [Parameters](/reference/api/csharp/aspire.hosting.radius/legacyrecipeentryconstruct/properties.md#parameters) : `BicepDictionary<object>` `get; set` -- Optional recipe parameters for this legacy entry. Populated only when the environment declares recipe parameters; left unassigned otherwise so the `parameters` key is omitted from the emitted Bicep.
- [TemplateKind](/reference/api/csharp/aspire.hosting.radius/legacyrecipeentryconstruct/properties.md#templatekind) : `BicepValue<string>` `get; set` -- Recipe template kind (e.g., "bicep").
- [TemplatePath](/reference/api/csharp/aspire.hosting.radius/legacyrecipeentryconstruct/properties.md#templatepath) : `BicepValue<string>` `get; set` -- Recipe template path / OCI registry URL.
