diff --git a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/ClearDownloadCacheCommand.cs b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/ClearDownloadCacheCommand.cs index 981bdb4311..00e832a8d3 100644 --- a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/ClearDownloadCacheCommand.cs +++ b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/ClearDownloadCacheCommand.cs @@ -15,7 +15,6 @@ public class ClearDownloadCacheCommand : IConsoleCommand, ITransientDependency public ILogger Logger { get; set; } - public ClearDownloadCacheCommand() { Logger = NullLogger.Instance; diff --git a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/ISourceCodeStore.cs b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/ISourceCodeStore.cs index 1201e09ec8..c503b87b6e 100644 --- a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/ISourceCodeStore.cs +++ b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/ISourceCodeStore.cs @@ -10,6 +10,7 @@ public interface ISourceCodeStore string type, [CanBeNull] string version = null, [CanBeNull] string templateSource = null, - bool includePreReleases = false + bool includePreReleases = false, + bool skipCache = false ); }