Share via


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
Source:
ExecutableResourceBuilderExtensions.cs
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 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
Source:
ExecutableResourceBuilderExtensions.cs
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>.

Remarks

You can run any executable command using its full path. As a security feature, Aspire doesn't run executable unless the command is located in a path listed in the PATH environment variable.

To run an executable file that's in the current directory, specify the full path or use the relative path ./ to represent the current directory.

Applies to