7 references to ExecutablePath
Aspire.Hosting (7)
ResourceBuilderExtensions.cs (7)
3427
throw new DistributedApplicationException($"Process command '{processCommandSpec.
ExecutablePath
}' arguments cannot contain null values.");
3436
throw new DistributedApplicationException($"Process command '{processCommandSpec.
ExecutablePath
}' environment variables require non-empty names.");
3441
throw new DistributedApplicationException($"Process command '{processCommandSpec.
ExecutablePath
}' environment variable '{name}' requires a value.");
3445
return new ProcessSpec(processCommandSpec.
ExecutablePath
)
3456
OnOutputData = output => context.Logger.LogDebug("{ExecutablePath} (stdout): {Output}", processCommandSpec.
ExecutablePath
, output),
3457
OnErrorData = error => context.Logger.LogDebug("{ExecutablePath} (stderr): {Error}", processCommandSpec.
ExecutablePath
, error)
3481
return GetDefaultProcessCommandResult(processCommandSpec.
ExecutablePath
, processResult, commandOptions);