Add `skipCache` to `ISourceCodeStore `.

pull/16657/head
maliming 2 years ago
parent e1fedf994b
commit a427c7b069
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4

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

@ -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