diff --git a/aspnet/migration/rc2-to-rtm.rst b/aspnet/migration/rc2-to-rtm.rst index 97f2d66bbc..feaade97cf 100644 --- a/aspnet/migration/rc2-to-rtm.rst +++ b/aspnet/migration/rc2-to-rtm.rst @@ -14,6 +14,16 @@ This migration guide covers migrating an ASP.NET Core RC2 application to ASP.NET There weren't many significant changes to ASP.NET Core between the RC2 and 1.0 releases. For a complete list of changes, see the `ASP.NET Core 1.0 announcements `_. +Install the new tools from http://www.dot.net and follow the instructions. +Update the global.json to +.. code-block:: javascript +{ + "projects": [ "src", "test" ], + "sdk": { + "version": "1.0.0-preview2-003121" + } +} + Tools ----- @@ -53,4 +63,4 @@ The ``HtmlEncodedString`` class has been replaced by :dn:class:`~Microsoft.AspNe Security -------- -The :dn:class:`~Microsoft.AspNetCore.Authorization.AuthorizationHandler\` class now only contains an asynchronous interface. \ No newline at end of file +The :dn:class:`~Microsoft.AspNetCore.Authorization.AuthorizationHandler\` class now only contains an asynchronous interface.