From 45695db7b822025609e8a99ae4eab85e2811bc91 Mon Sep 17 00:00:00 2001 From: Ilkay Ilknur Date: Mon, 30 Nov 2020 11:38:22 +0300 Subject: [PATCH] NRE exception fix. --- .../src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Bundling/BundlerBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Bundling/BundlerBase.cs b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Bundling/BundlerBase.cs index 2927a21d29..525548db87 100644 --- a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Bundling/BundlerBase.cs +++ b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Bundling/BundlerBase.cs @@ -16,7 +16,7 @@ namespace Volo.Abp.Cli.Bundling private static string[] _minFileSuffixes = { "min", "prod" }; protected IMinifier Minifier { get; } - protected ILogger Logger { get; set; } + public ILogger Logger { get; set; } public abstract string FileExtension { get; } public abstract string GenerateDefinition(string bundleFilePath);