I have a single file in my application that I only have a minified version of and I would like to create a bundle for it:
bundles.Add(new ScriptBundle("~/bundles/maskedinput").Include(
"~/Scripts/jquery.maskedinput-1.3.min.js"));
The problem is that by default in debug mode, the bundling mechanism ignores .min files. I don't want to turn off this rule for all bundles, but I would like to disable it for this single bundle. Is this possible?