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