Browse Source

Add summary to AbpApplicationCreationOptions' Configuration property.

Resolve #5794
pull/5851/head
maliming 6 years ago
committed by GitHub
parent
commit
f434855e93
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      framework/src/Volo.Abp.Core/Volo/Abp/AbpApplicationCreationOptions.cs

5
framework/src/Volo.Abp.Core/Volo/Abp/AbpApplicationCreationOptions.cs

@ -13,6 +13,9 @@ namespace Volo.Abp
[NotNull]
public PlugInSourceList PlugInSources { get; }
/// <summary>
/// The options in this property only take effect when IConfiguration not registered.
/// </summary>
[NotNull]
public AbpConfigurationBuilderOptions Configuration {get; }
@ -23,4 +26,4 @@ namespace Volo.Abp
Configuration = new AbpConfigurationBuilderOptions();
}
}
}
}

Loading…
Cancel
Save