ASP.NET MVC Script bundle not rendered
问题 I've included the following line in the BundleConfig.cs file: bundles.Add(new ScriptBundle("~/bundles/jqueryajax").Include( "~/Scripts/jquery.unobtrusive-ajax.min.js")); However when I try to render it among other scripts, it's skipped. Here is how I render the scripts: @Scripts.Render( "~/bundles/jquery", "~/bundles/jqueryui", "~/bundles/jqueryajax", "~/bundles/jquerytree") This is the output HTML, the jqueryajax bundle is omitted: <script src="/Scripts/jquery-1.9.1.js"></script> <script src