protected override void Handle(BundleCollection bundles, string bundlePath, StreamWriter logWriter,
     params string[] includeVirtualPathes)
 {
     logWriter.WriteLine("Directory:{0}:{1}", bundlePath, String.Join(",", includeVirtualPathes));
     var c = new SeajsBundle(bundlePath, _isCombine);
     var f = c.Include(includeVirtualPathes);
     bundles.Add(f);
 }
Exemplo n.º 2
0
        protected override void Handle(BundleCollection bundles, string bundlePath, StreamWriter logWriter,
                                       params string[] includeVirtualPathes)
        {
            logWriter.WriteLine("Directory:{0}:{1}", bundlePath, String.Join(",", includeVirtualPathes));
            var c = new SeajsBundle(bundlePath, _isCombine);
            var f = c.Include(includeVirtualPathes);

            bundles.Add(f);
        }