How does one combined multiple Javascript CDN files into one massive bundle in Visual Studio .NET 4.5 ?
I've seen the following online, but this only shows 1 CDN, which also provides no benefit since bundling 1 item is useless...
bundles.UseCdn = true; //enable CDN support
//add link to jquery on the CDN
var jqueryCdnPath = "http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.1.min.js";
bundles.Add(new ScriptBundle("~/bundles/jquery", jqueryCdnPath).Include(
"~/Scripts/jquery-{version}.js"));
How about if I have multiple CDN files that I would like to smash together into 1 http request, is it possible to in turn combined them all?