From a brand-new ASP.NET MVC 4 Beta Web Application, I\'m re-arranging my folders to match Rob Conery\'s VidPub.Web example
Specifically, this means that the final d
It appears you have to register your own bundle when using non-default directories. I added the following to Application_Start and it fixed the problem
var bundle = new Bundle("~/Public/stylesheets/css", new CssMinify());
bundle.AddDirectory("~/Public/stylesheets", "*.css", true);
BundleTable.Bundles.Add(bundle);
bundle = new Bundle("~/Public/javascripts/js", new JsMinify());
bundle.AddDirectory("~/Public/javascripts", "*.js", true);
BundleTable.Bundles.Add(bundle);