1 write to Execute
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] },
6 references to Execute
aspire (6)
BackchannelJsonSerializerContext.RuntimeSpec.g.cs (2)
170
Getter = static obj => ((global::Aspire.Hosting.Ats.RuntimeSpec)obj).
Execute
,
249
CommandSpecSerializeHandler(writer, ((global::Aspire.Hosting.Ats.RuntimeSpec)value).
Execute
);
Projects\GuestAppHostProject.cs (2)
1046
runtimeSpec.
Execute
.Command,
1047
string.Join(" ", runtimeSpec.
Execute
.Args));
Projects\GuestRuntime.cs (2)
117
: _spec.
Execute
;
139
var commandSpec = _spec.PublishExecute ?? _spec.
Execute
;