2 instantiations of ConfigInfo
aspire (2)
Commands\ConfigCommand.cs (1)
418var info = new ConfigInfo(localPath, globalPath, availableFeatures, localSchema, globalSchema);
JsonSourceGenerationContext.ConfigInfo.g.cs (1)
32ObjectWithParameterizedConstructorCreator = static args => new global::Aspire.Cli.Commands.ConfigInfo((string)args[0], (string)args[1], (global::System.Collections.Generic.List<global::Aspire.Cli.Commands.FeatureInfo>)args[2], (global::Aspire.Cli.Commands.SettingsSchema)args[3], (global::Aspire.Cli.Commands.SettingsSchema)args[4]),
34 references to ConfigInfo
aspire (34)
Commands\ConfigCommand.cs (1)
418var info = new ConfigInfo(localPath, globalPath, availableFeatures, localSchema, globalSchema);
JsonSourceGenerationContext.ConfigInfo.g.cs (31)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Commands.ConfigInfo>? _ConfigInfo; 19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Commands.ConfigInfo> ConfigInfo 22get => _ConfigInfo ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Commands.ConfigInfo>)Options.GetTypeInfo(typeof(global::Aspire.Cli.Commands.ConfigInfo)); 25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Commands.ConfigInfo> Create_ConfigInfo(global::System.Text.Json.JsonSerializerOptions options) 27if (!TryGetTypeInfoForRuntimeCustomConverter<global::Aspire.Cli.Commands.ConfigInfo>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Commands.ConfigInfo> jsonTypeInfo)) 29var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Aspire.Cli.Commands.ConfigInfo> 35ConstructorAttributeProviderFactory = static () => typeof(global::Aspire.Cli.Commands.ConfigInfo).GetConstructor(InstanceMemberBindingFlags, binder: null, new[] {typeof(string), typeof(string), typeof(global::System.Collections.Generic.List<global::Aspire.Cli.Commands.FeatureInfo>), typeof(global::Aspire.Cli.Commands.SettingsSchema), typeof(global::Aspire.Cli.Commands.SettingsSchema)}, modifiers: null), 39jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Aspire.Cli.Commands.ConfigInfo>(options, objectInfo); 56DeclaringType = typeof(global::Aspire.Cli.Commands.ConfigInfo), 58Getter = static obj => ((global::Aspire.Cli.Commands.ConfigInfo)obj).LocalSettingsPath, 66AttributeProviderFactory = static () => typeof(global::Aspire.Cli.Commands.ConfigInfo).GetProperty("LocalSettingsPath", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 78DeclaringType = typeof(global::Aspire.Cli.Commands.ConfigInfo), 80Getter = static obj => ((global::Aspire.Cli.Commands.ConfigInfo)obj).GlobalSettingsPath, 88AttributeProviderFactory = static () => typeof(global::Aspire.Cli.Commands.ConfigInfo).GetProperty("GlobalSettingsPath", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 100DeclaringType = typeof(global::Aspire.Cli.Commands.ConfigInfo), 102Getter = static obj => ((global::Aspire.Cli.Commands.ConfigInfo)obj).AvailableFeatures, 110AttributeProviderFactory = static () => typeof(global::Aspire.Cli.Commands.ConfigInfo).GetProperty("AvailableFeatures", InstanceMemberBindingFlags, null, typeof(global::System.Collections.Generic.List<global::Aspire.Cli.Commands.FeatureInfo>), global::System.Array.Empty<global::System.Type>(), null), 122DeclaringType = typeof(global::Aspire.Cli.Commands.ConfigInfo), 124Getter = static obj => ((global::Aspire.Cli.Commands.ConfigInfo)obj).LocalSettingsSchema, 132AttributeProviderFactory = static () => typeof(global::Aspire.Cli.Commands.ConfigInfo).GetProperty("LocalSettingsSchema", InstanceMemberBindingFlags, null, typeof(global::Aspire.Cli.Commands.SettingsSchema), global::System.Array.Empty<global::System.Type>(), null), 144DeclaringType = typeof(global::Aspire.Cli.Commands.ConfigInfo), 146Getter = static obj => ((global::Aspire.Cli.Commands.ConfigInfo)obj).GlobalSettingsSchema, 154AttributeProviderFactory = static () => typeof(global::Aspire.Cli.Commands.ConfigInfo).GetProperty("GlobalSettingsSchema", InstanceMemberBindingFlags, null, typeof(global::Aspire.Cli.Commands.SettingsSchema), global::System.Array.Empty<global::System.Type>(), null), 166private void ConfigInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Aspire.Cli.Commands.ConfigInfo? value) 176string __value_LocalSettingsPath = ((global::Aspire.Cli.Commands.ConfigInfo)value).LocalSettingsPath; 181string __value_GlobalSettingsPath = ((global::Aspire.Cli.Commands.ConfigInfo)value).GlobalSettingsPath; 186global::System.Collections.Generic.List<global::Aspire.Cli.Commands.FeatureInfo> __value_AvailableFeatures = ((global::Aspire.Cli.Commands.ConfigInfo)value).AvailableFeatures; 192global::Aspire.Cli.Commands.SettingsSchema __value_LocalSettingsSchema = ((global::Aspire.Cli.Commands.ConfigInfo)value).LocalSettingsSchema; 198global::Aspire.Cli.Commands.SettingsSchema __value_GlobalSettingsSchema = ((global::Aspire.Cli.Commands.ConfigInfo)value).GlobalSettingsSchema;
JsonSourceGenerationContext.cs (1)
27[JsonSerializable(typeof(ConfigInfo))]
JsonSourceGenerationContext.GetJsonTypeInfo.g.cs (1)
34if (type == typeof(global::Aspire.Cli.Commands.ConfigInfo))