1 write to Command
aspire (1)
BackchannelJsonSerializerContext.CommandSpec.g.cs (1)
32ObjectWithParameterizedConstructorCreator = static args => new global::Aspire.Hosting.Ats.CommandSpec(){ Command = (string)args[0], Args = (string[])args[1], EnvironmentVariables = (global::System.Collections.Generic.Dictionary<string, string>)args[2] },
8 references to Command
aspire (8)
BackchannelJsonSerializerContext.CommandSpec.g.cs (2)
58Getter = static obj => ((global::Aspire.Hosting.Ats.CommandSpec)obj).Command, 132writer.WriteString(PropName_Command, ((global::Aspire.Hosting.Ats.CommandSpec)value).Command);
Projects\GuestAppHostProject.cs (1)
1046runtimeSpec.Execute.Command,
Projects\GuestRuntime.cs (5)
55var command = FindCommand(_spec.InstallDependencies.Command); 58_logger.LogError("Command '{Command}' not found in PATH", _spec.InstallDependencies.Command); 152var command = FindCommand(commandSpec.Command); 155_logger.LogError("Command '{Command}' not found in PATH", commandSpec.Command); 157output.AppendError($"Command '{commandSpec.Command}' not found. Please ensure it is installed and in your PATH.");