We recently upgraded our MVC projects to Visual Studio 2013 and ASP.NET 4.5.1 and our bundles containing certain wildcards like:
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.min.js"));
have stopped compiling correctly. It seems to be effecting any wildcard containing more characters before '.js', which is usually min.
I realize that part of bundling is minification, so it's not a necessity by some opinions, but is that the intent of this? I've read nothing about this is release notes. It is going to require a lot of effort to go back and fix, as sometimes we don't have the regular versions of these scripts. We are experiencing other wild card issues, but this seems to be the big one. I have yet to see anyone else posting an issue with this, so I'm curious to see if anyone else has noticed it, or if it is a configuration problem we're experiencing due to the upgrade process.