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