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