2 writes to TypeId
aspire (2)
BackchannelJsonSerializerContext.EnumTypeInfo.g.cs (1)
59
Setter = static (obj, value) => ((global::Aspire.Cli.Commands.Sdk.EnumTypeInfo)obj).
TypeId
= value!,
CapabilitiesJsonContext.EnumTypeInfo.g.cs (1)
59
Setter = static (obj, value) => ((global::Aspire.Cli.Commands.Sdk.EnumTypeInfo)obj).
TypeId
= value!,
6 references to TypeId
aspire (6)
BackchannelJsonSerializerContext.EnumTypeInfo.g.cs (2)
58
Getter = static obj => ((global::Aspire.Cli.Commands.Sdk.EnumTypeInfo)obj).
TypeId
,
132
writer.WriteString(PropName_TypeId, ((global::Aspire.Cli.Commands.Sdk.EnumTypeInfo)value).
TypeId
);
CapabilitiesJsonContext.EnumTypeInfo.g.cs (2)
58
Getter = static obj => ((global::Aspire.Cli.Commands.Sdk.EnumTypeInfo)obj).
TypeId
,
132
string __value_TypeId = ((global::Aspire.Cli.Commands.Sdk.EnumTypeInfo)value).
TypeId
;
Commands\Sdk\SdkDumpCommand.cs (2)
312
foreach (var t in capabilities.EnumTypes.OrderBy(t => t.
TypeId
))
314
sb.AppendLine(string.Format(CultureInfo.InvariantCulture, "{0} = {1}", t.
TypeId
, string.Join(" | ", t.Values)));