我有用 VS2010 创建的 MVC4 RC 项目。我不确定发生了什么,突然间我开始收到以下错误:
错误 1“System.Web.Optimization.BundleCollection”不包含“RegisterTemplateBundles”的定义,并且找不到接受“System.Web.Optimization.BundleCollection”类型的第一个参数的扩展方法“RegisterTemplateBundles”(您是否缺少使用指令还是程序集引用?) C:\xxxx\xxxx\Global.asax.cs 40 33 xxxx
错误来自 Application_Start():
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
RegisterGlobalFilters(GlobalFilters.Filters);
RegisterRoutes(RouteTable.Routes);
BundleTable.Bundles.RegisterTemplateBundles();
}
我的 Global.asax.cs 文件中有以下 using 语句:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
有任何想法吗????