2 instantiations of PropertyInfo
aspire (2)
Commands\SettingsSchemaBuilder.cs (2)
54
properties.Add(new
PropertyInfo
(jsonPropertyName, jsonType, description, required));
199
properties.Add(new
PropertyInfo
(jsonPropertyName, jsonType, description, required, subProperties, additionalPropertiesType));
8 references to PropertyInfo
aspire (8)
Commands\ConfigCommand.cs (1)
502
foreach (
var
property in localSchema.Properties)
Commands\ConfigInfo.cs (2)
37
internal sealed record SettingsSchema(List<
PropertyInfo
> Properties);
53
List<
PropertyInfo
>? SubProperties = null,
Commands\SettingsSchemaBuilder.cs (4)
23
var properties = new List<
PropertyInfo
>();
114
private static List<
PropertyInfo
> BuildPropertiesForType(
118
var properties = new List<
PropertyInfo
>();
154
List<
PropertyInfo
>? subProperties = null;
JsonSourceGenerationContext.cs (1)
36
[JsonSerializable(typeof(
PropertyInfo
))]