I am using bundling included in the asp.net web optimizations, and there is a single .js file that is located in my directory that I want to ignore.
Right now I'm doing:
bundles.Add(new ScriptBundle("~/bundles/content")
.IncludeDirectory("~/Content/src", "*.js", true));
I would like to exclude app.js from this. How can I tell the IncludeDirectory to ignore this file?