ExecutableResourceBuilderExtensions.AddExecutable Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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>.