2 writes to TypeId
aspire (2)
BackchannelJsonSerializerContext.DtoTypeInfo.g.cs (1)
59Setter = static (obj, value) => ((global::Aspire.Cli.Commands.Sdk.DtoTypeInfo)obj).TypeId = value!,
CapabilitiesJsonContext.DtoTypeInfo.g.cs (1)
59Setter = static (obj, value) => ((global::Aspire.Cli.Commands.Sdk.DtoTypeInfo)obj).TypeId = value!,
6 references to TypeId
aspire (6)
BackchannelJsonSerializerContext.DtoTypeInfo.g.cs (2)
58Getter = static obj => ((global::Aspire.Cli.Commands.Sdk.DtoTypeInfo)obj).TypeId, 132writer.WriteString(PropName_TypeId, ((global::Aspire.Cli.Commands.Sdk.DtoTypeInfo)value).TypeId);
CapabilitiesJsonContext.DtoTypeInfo.g.cs (2)
58Getter = static obj => ((global::Aspire.Cli.Commands.Sdk.DtoTypeInfo)obj).TypeId, 132string __value_TypeId = ((global::Aspire.Cli.Commands.Sdk.DtoTypeInfo)value).TypeId;
Commands\Sdk\SdkDumpCommand.cs (2)
296foreach (var t in capabilities.DtoTypes.OrderBy(t => t.TypeId)) 298sb.AppendLine(t.TypeId);