Is there a way to bundle a single file using the new bundling features in MVC4? I know bundling a single file doesn\'t make much sense but I\'d like to use server-side minificat
Well, define a bundle containing only this file in your bundle config:
bundles.Add( new ScriptBundle("~/bundles/myscript").Include("~/Scripts/myscript.js") );
and then use it in your view by referencing it by name:
@Scripts.Render("~/bundles/myscript")