ASP.NET 5 error after upgrading from Beta-6 to Beta-7

I am creating an ASP.NET 5 web application. I have the following packages installed:

"dependencies": {
    "Microsoft.AspNet.Mvc": "6.0.0-beta6",
    "Microsoft.AspNet.Server.IIS": "1.0.0-beta6",
    "Microsoft.AspNet.Server.WebListener": "1.0.0-beta6",
    "Microsoft.AspNet.StaticFiles": "1.0.0-beta6"
  },

      

when i update these packages to

 "dependencies": {
    "Microsoft.AspNet.Mvc": "6.0.0-beta7-14368",
    "Microsoft.AspNet.Server.IIS": "1.0.0-beta7-12113",
    "Microsoft.AspNet.Server.WebListener": "1.0.0-beta7-12488",
    "Microsoft.AspNet.StaticFiles": "1.0.0-beta7-12221"
  },

      

I am getting the following error:

Server error in application "/".

Method not found: "Microsoft.Framework.Runtime.Library Microsoft.Framework.Runtime.ILibraryManager.GetLibraryInformation (System.String)".

+3


source to share


1 answer


It may be related to Beta Runtime Refactoring and Issues with IntelliSense Release and Release in VS2015 RTM using DNX Beta7



+1


source







All Articles