Project Type: ASP.Net MVC4
In _Layouts folder:
@Styles.Render("~/Content/kendo")
In Bundles config:
bundles.Add(new StyleBundle("~/Content/kendo").Include(
"~/Content/kendo/2012.3.1114/kendo.common.min.css",
"~/Content/kendo/2012.3.1114/kendo.default.min.css"));
It is working, when in web.config <compilation debug="true" targetFramework="4.0"/>
But rendered as blank file on browser when <compilation debug="false" targetFramework="4.0"/>
In _Layouts folder:
@Styles.Render("~/Content/kendo")
In Bundles config:
bundles.Add(new StyleBundle("~/Content/kendo").Include(
"~/Content/kendo/2012.3.1114/kendo.common.min.css",
"~/Content/kendo/2012.3.1114/kendo.default.min.css"));
It is working, when in web.config <compilation debug="true" targetFramework="4.0"/>
But rendered as blank file on browser when <compilation debug="false" targetFramework="4.0"/>