Browse Source

To compound assignment

pull/13589/head
Berin Iwlew 4 years ago
parent
commit
1d6a114ae2
  1. 2
      framework/src/Volo.Abp.AspNetCore/Microsoft/AspNetCore/Hosting/AbpHostingEnvironmentExtensions.cs

2
framework/src/Volo.Abp.AspNetCore/Microsoft/AspNetCore/Hosting/AbpHostingEnvironmentExtensions.cs

@ -9,7 +9,7 @@ public static class AbpHostingEnvironmentExtensions
this IWebHostEnvironment env,
AbpConfigurationBuilderOptions options = null)
{
options = options ?? new AbpConfigurationBuilderOptions();
options ??= new AbpConfigurationBuilderOptions();
if (options.BasePath.IsNullOrEmpty())
{

Loading…
Cancel
Save