1 instantiation of SettingsSchema
aspire (1)
Commands\SettingsSchemaBuilder.cs (1)
56
return new
SettingsSchema
(properties.OrderBy(p => p.Name).ToList());
6 references to SettingsSchema
aspire (6)
Commands\ConfigCommand.cs (2)
407
var
localSchema = SettingsSchemaBuilder.BuildSchema(excludeLocalOnly: false);
408
var
globalSchema = SettingsSchemaBuilder.BuildSchema(excludeLocalOnly: true);
Commands\ConfigInfo.cs (2)
18
SettingsSchema
LocalSettingsSchema,
19
SettingsSchema
GlobalSettingsSchema);
Commands\SettingsSchemaBuilder.cs (1)
20
public static
SettingsSchema
BuildSchema(bool excludeLocalOnly)
JsonSourceGenerationContext.cs (1)
30
[JsonSerializable(typeof(
SettingsSchema
))]