Share via


AzureBicepResourceExtensions.AddBicepTemplate Method

Definition

Adds an Azure Bicep resource to the application model.

public static Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.Azure.AzureBicepResource> AddBicepTemplate (this Aspire.Hosting.IDistributedApplicationBuilder builder, string name, string bicepFile);
static member AddBicepTemplate : Aspire.Hosting.IDistributedApplicationBuilder * string * string -> Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.Azure.AzureBicepResource>
<Extension()>
Public Function AddBicepTemplate (builder As IDistributedApplicationBuilder, name As String, bicepFile As String) As IResourceBuilder(Of AzureBicepResource)

Parameters

name
String

The name of the resource. This name will be used as the deployment name.

bicepFile
String

The path to the bicep file on disk. This path is relative to the apphost's project directory.

Returns

An IResourceBuilder<T>.

Applies to