using System; namespace Umbraco.Cms.Core.Composing { /// /// A runtime hash this is always different on each app startup /// public sealed class VaryingRuntimeHash : IRuntimeHash { private readonly string _hash; public VaryingRuntimeHash() { _hash = DateTime.Now.Ticks.ToString(); } public string GetHashValue() => _hash; } }