Rename SimpleBundleContributor to BundleFileContributor

pull/301/head
Halil ibrahim Kalkan 7 years ago
parent 2bc9bf092f
commit 715f8819df

@ -4,7 +4,7 @@
{
public static void AddFiles(this BundleContributorCollection contributors, params string[] files)
{
contributors.Add(new SimpleBundleContributor(files));
contributors.Add(new BundleFileContributor(files));
}
}
}

@ -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<string>();
}
Loading…
Cancel
Save