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