Update rc2-to-rtm.rst

install comment and global.json note.
pull/1634/head
Aligned 2016-06-29 13:58:22 -05:00 committed by RachelAppel
parent 227d8618e5
commit e1962509f1
1 changed files with 11 additions and 1 deletions

View File

@ -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 <https://github.com/aspnet/announcements/issues?q=is%3Aopen+is%3Aissue+milestone%3A1.0.0>`_. 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 <https://github.com/aspnet/announcements/issues?q=is%3Aopen+is%3Aissue+milestone%3A1.0.0>`_.
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 Tools
----- -----
@ -53,4 +63,4 @@ The ``HtmlEncodedString`` class has been replaced by :dn:class:`~Microsoft.AspNe
Security Security
-------- --------
The :dn:class:`~Microsoft.AspNetCore.Authorization.AuthorizationHandler\<TRequirement>` class now only contains an asynchronous interface. The :dn:class:`~Microsoft.AspNetCore.Authorization.AuthorizationHandler\<TRequirement>` class now only contains an asynchronous interface.