Browse Source

Add `skipCache` to `ISourceCodeStore `.

pull/16657/head
maliming 3 years ago
parent
commit
a427c7b069
No known key found for this signature in database GPG Key ID: A646B9CB645ECEA4
  1. 1
      framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/ClearDownloadCacheCommand.cs
  2. 3
      framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/ISourceCodeStore.cs

1
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/ClearDownloadCacheCommand.cs

@ -15,7 +15,6 @@ public class ClearDownloadCacheCommand : IConsoleCommand, ITransientDependency
public ILogger<ClearDownloadCacheCommand> Logger { get; set; }
public ClearDownloadCacheCommand()
{
Logger = NullLogger<ClearDownloadCacheCommand>.Instance;

3
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
);
}

Loading…
Cancel
Save