Browse Source
Add summary to AbpApplicationCreationOptions' Configuration property.
Resolve #5794
pull/5851/head
maliming
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
1 deletions
-
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(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|