2 writes to AtsTypeId
aspire (2)
BackchannelJsonSerializerContext.HandleTypeInfo.g.cs (1)
59
Setter = static (obj, value) => ((global::Aspire.Cli.Commands.Sdk.HandleTypeInfo)obj).
AtsTypeId
= value!,
CapabilitiesJsonContext.HandleTypeInfo.g.cs (1)
59
Setter = static (obj, value) => ((global::Aspire.Cli.Commands.Sdk.HandleTypeInfo)obj).
AtsTypeId
= value!,
10 references to AtsTypeId
aspire (10)
BackchannelJsonSerializerContext.HandleTypeInfo.g.cs (2)
58
Getter = static obj => ((global::Aspire.Cli.Commands.Sdk.HandleTypeInfo)obj).
AtsTypeId
,
192
writer.WriteString(PropName_AtsTypeId, ((global::Aspire.Cli.Commands.Sdk.HandleTypeInfo)value).
AtsTypeId
);
CapabilitiesJsonContext.HandleTypeInfo.g.cs (2)
58
Getter = static obj => ((global::Aspire.Cli.Commands.Sdk.HandleTypeInfo)obj).
AtsTypeId
,
192
string __value_AtsTypeId = ((global::Aspire.Cli.Commands.Sdk.HandleTypeInfo)value).
AtsTypeId
;
Commands\Sdk\SdkDumpCommand.cs (6)
272
foreach (var t in capabilities.HandleTypes.OrderBy(t => t.
AtsTypeId
))
288
sb.AppendLine(string.Format(CultureInfo.InvariantCulture, "{0}{1}", t.
AtsTypeId
, flagStr));
379
foreach (var t in capabilities.HandleTypes.OrderBy(t => t.
AtsTypeId
))
397
var shortName = t.
AtsTypeId
.Contains('/')
398
? t.
AtsTypeId
.Split('/')[1]
399
: t.
AtsTypeId
;