1 write to InstallDependencies
aspire (1)
BackchannelJsonSerializerContext.RuntimeSpec.g.cs (1)
32
ObjectWithParameterizedConstructorCreator = static args => new global::Aspire.Hosting.Ats.RuntimeSpec(){ Language = (string)args[0], DisplayName = (string)args[1], CodeGenLanguage = (string)args[2], DetectionPatterns = (string[])args[3],
InstallDependencies
= (global::Aspire.Hosting.Ats.CommandSpec)args[4], Execute = (global::Aspire.Hosting.Ats.CommandSpec)args[5], WatchExecute = (global::Aspire.Hosting.Ats.CommandSpec)args[6], PublishExecute = (global::Aspire.Hosting.Ats.CommandSpec)args[7] },
8 references to InstallDependencies
aspire (8)
BackchannelJsonSerializerContext.RuntimeSpec.g.cs (2)
150
Getter = static obj => ((global::Aspire.Hosting.Ats.RuntimeSpec)obj).
InstallDependencies
,
247
CommandSpecSerializeHandler(writer, ((global::Aspire.Hosting.Ats.RuntimeSpec)value).
InstallDependencies
);
Projects\GuestRuntime.cs (6)
49
if (_spec.
InstallDependencies
is null)
55
var command = FindCommand(_spec.
InstallDependencies
.Command);
58
_logger.LogError("Command '{Command}' not found in PATH", _spec.
InstallDependencies
.Command);
62
var args = ReplacePlaceholders(_spec.
InstallDependencies
.Args, null, directory, null);
83
if (_spec.
InstallDependencies
.EnvironmentVariables is not null)
85
foreach (var (key, value) in _spec.
InstallDependencies
.EnvironmentVariables)