From 41ce85f253c2d4aa79bdb9e1acc685eaa2942648 Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Tue, 15 Oct 2019 14:24:57 +0300 Subject: [PATCH] AspNetCoreContentOptions to AbpAspNetCoreContentOptions --- ...etCoreContentOptions.cs => AbpAspNetCoreContentOptions.cs} | 4 ++-- .../AspNetCore/VirtualFileSystem/WebContentFileProvider.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/VirtualFileSystem/{AspNetCoreContentOptions.cs => AbpAspNetCoreContentOptions.cs} (89%) diff --git a/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/VirtualFileSystem/AspNetCoreContentOptions.cs b/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/VirtualFileSystem/AbpAspNetCoreContentOptions.cs similarity index 89% rename from framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/VirtualFileSystem/AspNetCoreContentOptions.cs rename to framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/VirtualFileSystem/AbpAspNetCoreContentOptions.cs index c4265c7ced..ce6e454f54 100644 --- a/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/VirtualFileSystem/AspNetCoreContentOptions.cs +++ b/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/VirtualFileSystem/AbpAspNetCoreContentOptions.cs @@ -2,12 +2,12 @@ namespace Volo.Abp.AspNetCore.VirtualFileSystem { - public class AspNetCoreContentOptions + public class AbpAspNetCoreContentOptions { public List AllowedExtraWebContentFolders { get; } public List AllowedExtraWebContentFileExtensions { get; } - public AspNetCoreContentOptions() + public AbpAspNetCoreContentOptions() { AllowedExtraWebContentFolders = new List { diff --git a/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/VirtualFileSystem/WebContentFileProvider.cs b/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/VirtualFileSystem/WebContentFileProvider.cs index ebc7446d68..1b71dad8cb 100644 --- a/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/VirtualFileSystem/WebContentFileProvider.cs +++ b/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/VirtualFileSystem/WebContentFileProvider.cs @@ -17,12 +17,12 @@ namespace Volo.Abp.AspNetCore.VirtualFileSystem private readonly IWebHostEnvironment _hostingEnvironment; private string _rootPath = "/wwwroot"; //TODO: How to handle wwwroot naming? - protected AspNetCoreContentOptions Options { get; } + protected AbpAspNetCoreContentOptions Options { get; } public WebContentFileProvider( IVirtualFileProvider virtualFileProvider, IWebHostEnvironment hostingEnvironment, - IOptions options) + IOptions options) { _virtualFileProvider = virtualFileProvider; _hostingEnvironment = hostingEnvironment;