Files
Umbraco-CMS/src/Umbraco.Core/Configuration/IEntryAssemblyMetadata.cs
Paul Johnson 08f106a23f 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.
2021-12-02 11:32:19 +01:00

19 lines
483 B
C#

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