vNext cheat sheet
• blog
(this tiny blog post will be added to over time, and is initially for my own use as a cheat sheet to remember all the new vNext details, because, well, the only thing that hasn’t changed is the colour of Visual Studio)
DNVM
Dot Net Version Manager
https://github.com/aspnet/Home/wiki/Version-Manager
###Commands // Upgrades your installed .NET runtime version to the latest STABLE dnvm upgrade
// Upgrades your installed .NET runtime version to the latest UNSTABLE
dnvm upgrade -u
// Upgrades your installed .NET core runtime version to the latest STABLE
dnvm upgrade -r coreclr
// Upgrades your installed .NET core runtime version to the latest UNSTABLE
dnvm upgrade -r coreclr -u
// Architecture (apply to any of the above)
dnvm upgrade [-x86][-x64]
DNX
Dot Net Execution Environment
https://github.com/aspnet/dnx https://docs.asp.net/en/latest/dnx/overview.html
###Commands
// Updates the database with the latest migrations
dnx ef database update
// Adds a migration with the name "MyMigration"
dnx ef migrations add MyMigration