I can successfully enable jquery library with ScriptBundle from ASP.NET MVC using below
bundles.Add(new ScriptBundle("~/bundles/jquery").Include("~/Scripts/jquery-1.7.1.js"));
However, if I switched to the minimized library, I could not get it from the browser
bundles.Add(new ScriptBundle("~/bundles/jquery").Include("~/Scripts/jquery-1.7.1.min.js"));
Is there something wrong with the code?
javascript asp.net-mvc bundle
Shuping
source share