ExecutableResourceBuilderExtensions.AddExecutable Method

Definition

Overloads

AddExecutable(IDistributedApplicationBuilder, String, String, String, Object[])

Adds an executable resource to the application model.

AddExecutable(IDistributedApplicationBuilder, String, String, String, String[])

Adds an executable resource to the application model.

AddExecutable(IDistributedApplicationBuilder, String, String, String, Object[])

Source:
ExecutableResourceBuilderExtensions.cs

Adds an executable resource to the application model.

public static Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.ExecutableResource> AddExecutable (this Aspire.Hosting.IDistributedApplicationBuilder builder, string name, string command, string workingDirectory, params object[]? args);
static member AddExecutable : Aspire.Hosting.IDistributedApplicationBuilder * string * string * string * obj[] -> Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.ExecutableResource>
<Extension()>
Public Function AddExecutable (builder As IDistributedApplicationBuilder, name As String, command As String, workingDirectory As String, ParamArray args As Object()) As IResourceBuilder(Of ExecutableResource)

Parameters

name
String

The name of the resource.

command
String

The executable path. This can be a fully qualified path or a executable to run from the shell/command line.

workingDirectory
String

The working directory of the executable.

args
Object[]

The arguments to the executable.

Returns

The IResourceBuilder<T>.

Applies to

AddExecutable(IDistributedApplicationBuilder, String, String, String, String[])

Source:
ExecutableResourceBuilderExtensions.cs
Source:
ExecutableResourceBuilderExtensions.cs

Adds an executable resource to the application model.

public static Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.ExecutableResource> AddExecutable (this Aspire.Hosting.IDistributedApplicationBuilder builder, string name, string command, string workingDirectory, params string[]? args);
static member AddExecutable : Aspire.Hosting.IDistributedApplicationBuilder * string * string * string * string[] -> Aspire.Hosting.ApplicationModel.IResourceBuilder<Aspire.Hosting.ApplicationModel.ExecutableResource>
<Extension()>
Public Function AddExecutable (builder As IDistributedApplicationBuilder, name As String, command As String, workingDirectory As String, ParamArray args As String()) As IResourceBuilder(Of ExecutableResource)

Parameters

name
String

The name of the resource.

command
String

The executable path. This can be a fully qualified path or a executable to run from the shell/command line.

workingDirectory
String

The working directory of the executable.

args
String[]

The arguments to the executable.

Returns

The IResourceBuilder<T>.

Applies to