namespace Umbraco.Cms.Core.Configuration { /// /// Provides metadata about the entry assembly. /// public interface IEntryAssemblyMetadata { /// /// Gets the Name of entry assembly. /// public string Name { get; } /// /// Gets the InformationalVersion string for entry assembly. /// public string InformationalVersion { get; } } }