I have followed the steps here to upgrade from ASP.NET 5 Beta 4 to Beta 5 but am getting an error at runtime when calling application.UseBrowserLink();
:
To complete, if you want to update from beta 4 to beta 6, see the Stephen Lautier's answer and to this after :
To update from beta 5 to beta 6 :
I did :
In project.json :
In Startup.cs, if you use Session :
In ConfigureServices, add this :
services.AddCaching();
services.AddSession();
services.ConfigureSession(o => { o.IdleTimeout = TimeSpan.FromSeconds(10); });
Right click on your Project > Properties > Debug > Add a new Environment Variable :
Name : DNX_IIS_RUNTIME_FRAMEWORK
Value : dnx46
See that for more information : http://jameschambers.com/2015/07/launching-an-asp-net-5-application-from-visual-studio-2015/
My project work in beta6 after that, maybe there are other things to do.