2 writes to IsOptional
aspire (2)
BackchannelJsonSerializerContext.DtoPropertyInfo.g.cs (1)
101Setter = static (obj, value) => ((global::Aspire.Cli.Commands.Sdk.DtoPropertyInfo)obj).IsOptional = value!,
CapabilitiesJsonContext.DtoPropertyInfo.g.cs (1)
101Setter = static (obj, value) => ((global::Aspire.Cli.Commands.Sdk.DtoPropertyInfo)obj).IsOptional = value!,
6 references to IsOptional
aspire (6)
BackchannelJsonSerializerContext.DtoPropertyInfo.g.cs (2)
100Getter = static obj => ((global::Aspire.Cli.Commands.Sdk.DtoPropertyInfo)obj).IsOptional, 131writer.WriteBoolean(PropName_IsOptional, ((global::Aspire.Cli.Commands.Sdk.DtoPropertyInfo)value).IsOptional);
CapabilitiesJsonContext.DtoPropertyInfo.g.cs (2)
100Getter = static obj => ((global::Aspire.Cli.Commands.Sdk.DtoPropertyInfo)obj).IsOptional, 139writer.WriteBoolean(PropName_IsOptional, ((global::Aspire.Cli.Commands.Sdk.DtoPropertyInfo)value).IsOptional);
Commands\Sdk\SdkDumpCommand.cs (2)
301var optional = p.IsOptional ? "?" : ""; 414var optional = p.IsOptional ? "?" : "";