7
Mvc4 웹 프로젝트에 번들을 추가하려고합니다. 단계는 내가했다 :Mvc4의 _Layout.cshtml에서 Styles.Render 호출시 WebGrease 오류가 발생했습니다.
이- 이
System.Web.Optimization
- 에 내 프로젝트에 대한 참조를 추가 추가
@Styles.Render("~/Content/css")
내_Layout.cshtml
- 추가의
<head>
내BundleConfig.RegisterBundles(BundleTable.Bundles);
Global.asax.cs
- 에 추가
BundleConfig.cs
내App_Start
폴더에bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/site.css"));
와RegisterBundles(...)
메소드 내 - 내내에 간단한
site.css
을 추가했습니다.폴더.
I 단계 #에서 줄에 얻을 오류 2 위
Could not load file or assembly 'WebGrease, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
가 나는 DLL 참조 또는 뭔가를 놓치고있다? 나는 원래 빈 Mvc4 프로젝트에서 시작했다.
나에게도 효과적이었습니다. – Bertie92