У меня большая проблема. Я создал проект MVC 5, и я не могу запустить его с кодом по умолчанию. Проблема связана с комплектом. Он останавливается в методе Global.asax.cs/Application_Start
в строке BundleConfig.RegisterBundles(BundleTable.Bundles);
.
Он говорит: "Метод не найден:"!! 0 [] System.Array.Empty() '. " (System.MissingMethodException).
Вот код BundleConfig.cs
(по умолчанию):
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
"~/Scripts/jquery.validate*"));
// Use the development version of Modernizr to develop with and learn from. Then, when you're
// ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
"~/Scripts/modernizr-*"));
bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
"~/Scripts/bootstrap.js",
"~/Scripts/respond.js"));
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/site.css"));
}
Я использую VS 2015 Preview. Что мне делать/изменять?
Спасибо!