WebGrease error on Styles.Render call in _Layout.cshtml in Mvc4
问题 I'm trying to add bundling to my Mvc4 web project. The steps I took: Added a reference to my project to System.Web.Optimization Added @Styles.Render("~/Content/css") within <head> of my _Layout.cshtml Added BundleConfig.RegisterBundles(BundleTable.Bundles); to Global.asax.cs Added BundleConfig.cs to my App_Start folder with bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/site.css")); within RegisterBundles(...) method Added a simple site.css within my Content folder. The error