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(); }