i have the following bunlde inside my asp.net mvc5 web application:-
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/style.css",
"~/Content/touchTouch.css",
"~/fonts/font-awesome.css"));
now will this always render the style.css after the bootstrap.css ? or this is not guaranteed ? if the order is not guaranteed in the above code then how i can control the order of the css and script files inside the bundle ?