3 instantiations of LogsOutput
aspire (2)
Commands\LogsCommand.cs (1)
213var logsOutput = new LogsOutput
LogsCommandJsonContext.LogsOutput.g.cs (1)
32ObjectWithParameterizedConstructorCreator = static args => new global::Aspire.Cli.Commands.LogsOutput(){ Logs = (global::Aspire.Cli.Commands.LogLineJson[])args[0] },
Aspire.Cli.Tests (1)
Commands\LogsCommandTests.cs (1)
312var logsOutput = new LogsOutput
20 references to LogsOutput
aspire (18)
Commands\LogsCommand.cs (2)
39[JsonSerializable(typeof(LogsOutput))] 213var logsOutput = new LogsOutput
LogsCommandJsonContext.GetJsonTypeInfo.g.cs (1)
34if (type == typeof(global::Aspire.Cli.Commands.LogsOutput))
LogsCommandJsonContext.LogsOutput.g.cs (15)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Commands.LogsOutput>? _LogsOutput; 19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Commands.LogsOutput> LogsOutput 22get => _LogsOutput ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Commands.LogsOutput>)Options.GetTypeInfo(typeof(global::Aspire.Cli.Commands.LogsOutput)); 25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Commands.LogsOutput> Create_LogsOutput(global::System.Text.Json.JsonSerializerOptions options) 27if (!TryGetTypeInfoForRuntimeCustomConverter<global::Aspire.Cli.Commands.LogsOutput>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Commands.LogsOutput> jsonTypeInfo)) 29var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Aspire.Cli.Commands.LogsOutput> 35ConstructorAttributeProviderFactory = static () => typeof(global::Aspire.Cli.Commands.LogsOutput).GetConstructor(InstanceMemberBindingFlags, binder: null, global::System.Array.Empty<global::System.Type>(), modifiers: null), 39jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Aspire.Cli.Commands.LogsOutput>(options, objectInfo); 56DeclaringType = typeof(global::Aspire.Cli.Commands.LogsOutput), 58Getter = static obj => ((global::Aspire.Cli.Commands.LogsOutput)obj).Logs, 66AttributeProviderFactory = static () => typeof(global::Aspire.Cli.Commands.LogsOutput).GetProperty("Logs", InstanceMemberBindingFlags, null, typeof(global::Aspire.Cli.Commands.LogLineJson[]), global::System.Array.Empty<global::System.Type>(), null), 79private void LogsOutputSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Aspire.Cli.Commands.LogsOutput? value) 89global::Aspire.Cli.Commands.LogLineJson[] __value_Logs = ((global::Aspire.Cli.Commands.LogsOutput)value).Logs;
Aspire.Cli.Tests (2)
Commands\LogsCommandTests.cs (2)
312var logsOutput = new LogsOutput 331var deserialized = JsonSerializer.Deserialize(json, LogsCommandJsonContext.Snapshot.LogsOutput);