Exemple #1
0
    public BundleConfiguration(string name)
    {
        Name = name;

        Contributors = new BundleContributorCollection();
        BaseBundles  = new List <string>();
    }
 public static void AddFiles(this BundleContributorCollection contributors, params string[] files)
 {
     contributors.Add(new BundleFileContributor(files));
 }