using System.Collections.Generic; namespace Abp.Web.Configuration { internal class WebEmbeddedResourcesConfiguration : IWebEmbeddedResourcesConfiguration { public HashSet IgnoredFileExtensions { get; } public WebEmbeddedResourcesConfiguration() { IgnoredFileExtensions = new HashSet { "cshtml", "config" }; } } }