IWebEmbeddedResourcesConfiguration.cs 373 B

12345678910111213
  1. using System.Collections.Generic;
  2. namespace Abp.Web.Configuration
  3. {
  4. public interface IWebEmbeddedResourcesConfiguration
  5. {
  6. /// <summary>
  7. /// List of file extensions (without dot) to ignore for embedded resources.
  8. /// Default extensions: cshtml, config.
  9. /// </summary>
  10. HashSet<string> IgnoredFileExtensions { get; }
  11. }
  12. }