I have a bundle
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));
Here is my script folder's jquery prefixed scripts
Why (when i build for release) is my 90.4KB minified file giving a 156K output?
When i inspect the file it is minified, is it possible its combining more than one file?
I am using the MVC5 beta files so im not sure if the wildcard i am using is still correct?