Skip to content
Docs Try Aspire

DenoAppResource Constructors

Class Constructors 1 member
A resource that represents a Deno application.
Constructor(string, string, string) Section titled Constructor(string, string, string)
A resource that represents a Deno application.
public class DenoAppResource
{
public DenoAppResource(
string name,
string command,
string workingDirectory)
{
// ...
}
}
name string The name of the resource.
command string The command to execute.
workingDirectory string The working directory to use for the command. If null, the working directory of the current process is used.