From 715f8819df94d8a6f9ec91efdf331490cb9729db Mon Sep 17 00:00:00 2001 From: Halil ibrahim Kalkan Date: Mon, 18 Jun 2018 13:50:01 +0300 Subject: [PATCH] Rename SimpleBundleContributor to BundleFileContributor --- .../Mvc/UI/Bundling/BundleContributorListExtensions.cs | 2 +- .../{SimpleBundleContributor.cs => BundleFileContributor.cs} | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo/Abp/AspNetCore/Mvc/UI/Bundling/{SimpleBundleContributor.cs => BundleFileContributor.cs} (78%) diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo/Abp/AspNetCore/Mvc/UI/Bundling/BundleContributorListExtensions.cs b/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo/Abp/AspNetCore/Mvc/UI/Bundling/BundleContributorListExtensions.cs index 116cab0ade..2e2087435b 100644 --- a/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo/Abp/AspNetCore/Mvc/UI/Bundling/BundleContributorListExtensions.cs +++ b/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo/Abp/AspNetCore/Mvc/UI/Bundling/BundleContributorListExtensions.cs @@ -4,7 +4,7 @@ { public static void AddFiles(this BundleContributorCollection contributors, params string[] files) { - contributors.Add(new SimpleBundleContributor(files)); + contributors.Add(new BundleFileContributor(files)); } } } \ No newline at end of file diff --git a/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo/Abp/AspNetCore/Mvc/UI/Bundling/SimpleBundleContributor.cs b/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo/Abp/AspNetCore/Mvc/UI/Bundling/BundleFileContributor.cs similarity index 78% rename from src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo/Abp/AspNetCore/Mvc/UI/Bundling/SimpleBundleContributor.cs rename to src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo/Abp/AspNetCore/Mvc/UI/Bundling/BundleFileContributor.cs index 5dd357cefd..68a8c6458d 100644 --- a/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo/Abp/AspNetCore/Mvc/UI/Bundling/SimpleBundleContributor.cs +++ b/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo/Abp/AspNetCore/Mvc/UI/Bundling/BundleFileContributor.cs @@ -3,11 +3,11 @@ using System.Collections.Generic; namespace Volo.Abp.AspNetCore.Mvc.UI.Bundling { - public class SimpleBundleContributor : BundleContributor + public class BundleFileContributor : BundleContributor { public string[] Files { get; } - public SimpleBundleContributor(params string[] files) + public BundleFileContributor(params string[] files) { Files = files ?? Array.Empty(); }