I have a big problem. I created an MVC 5 project and I cannot run it with the default code. The problem is with the kit. It stops at the Global.asax.cs / Application_Start method in the line BundleConfig.RegisterBundles(BundleTable.Bundles); . He says: "Method not found:" !! 0 [] System.Array.Empty () '. "(System.MissingMethodException).
Here is the BundleConfig.cs code (default):
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*"));
I am using VS 2015 Preview. What should I do / change?
Thank!
asp.net-mvc bundle
GSeriousB Mar 12 '15 at 21:33 2015-03-12 21:33
source share