Fix smidge bundles not always invalidated between backoffice versions. (#11700)

* Introduced new smidge CacheBuster with sensible defaults.

* Bring back reset functionality in SmidgeRuntimeMinifier

* Clearer obsolete messaging.
This commit is contained in:
Paul Johnson
2021-12-02 10:32:19 +00:00
committed by GitHub
parent 6c5851f556
commit 08f106a23f
12 changed files with 257 additions and 15 deletions

View File

@@ -0,0 +1,18 @@
namespace Umbraco.Cms.Core.Configuration
{
/// <summary>
/// Provides metadata about the entry assembly.
/// </summary>
public interface IEntryAssemblyMetadata
{
/// <summary>
/// Gets the Name of entry assembly.
/// </summary>
public string Name { get; }
/// <summary>
/// Gets the InformationalVersion string for entry assembly.
/// </summary>
public string InformationalVersion { get; }
}
}