update getting-started.md for rtw (#3947)

* update for rtw

* remove 2.0 from title
pull/3948/head
Tom Dykstra 2017-08-14 09:59:40 -07:00 committed by Rick Anderson
parent 73ae24c123
commit 87e475cbc1
3 changed files with 7 additions and 24 deletions

View File

@ -15,13 +15,9 @@ uid: getting-started-1.1
# Getting Started with ASP.NET Core 1.1
> [!NOTE]
> These instructions are for ASP.NET Core 1.1. Looking for the latest preview version? See [the 2.0 version of this tutorial](xref:getting-started).
> These instructions are for ASP.NET Core 1.1. Looking for the latest version? See [the current version of this tutorial](xref:getting-started).
<!-- use this #1 after RTW, check version number
1. Install the .NET Core 1.0.4 SDK from the [.NET Core downloads page](https://microsoft.com/net/download/core/).
-->
1. Install [the .NET Core SDK](https://microsoft.com/net/core).
1. Install the .NET Core **SDK Installer** for SDK 1.0.4 from the [.NET Core 1.0.5 & 1.1.2 SDK 1.0.4 downloads page](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.0.5-download.md).
2. Create a folder for a new .NET Core project.
@ -32,7 +28,7 @@ uid: getting-started-1.1
cd aspnetcoreapp
```
2. If you have installed a later preview release on your machine, create a *global.json* file to select the 1.0.4 SDK.
2. If you have installed a later SDK version on your machine, create a *global.json* file to select the 1.0.4 SDK.
```json
{
@ -46,10 +42,6 @@ uid: getting-started-1.1
dotnet new web
```
<!-- commenting out for now, restore if this turns out to be a problem still
Note: Earlier versions of .NET Core required a `t` parameter, that is, `dotnet new -t web`. If you get an error running `dotnet new web`, run `dotnet --version` to verify that you are using version 1.1.0.
-->
3. Restore the packages.
```terminal

View File

@ -12,17 +12,12 @@ ms.technology: aspnet
ms.prod: asp.net-core
uid: getting-started
---
# Getting Started with ASP.NET Core 2.0
# Getting Started with ASP.NET Core
> [!NOTE]
> These instructions are for ASP.NET Core 2.0 Preview. The Preview release is not recommended for installation on a production machine. Looking to get started with the latest stable release? See [the 1.1 version of this tutorial](xref:getting-started-1.1).
> These instructions are for the latest version of ASP.NET Core. Looking to get started with an earlier version? See [the 1.1 version of this tutorial](xref:getting-started-1.1).
1. Install [.NET Core 2.0 Preview](https://microsoft.com/net/core/preview).
<!-- after RTW uncomment this section
If you're on Windows, select the **Command line / other** environment.
![Select Command line environment for Windows](getting-started/_static/win-install-cmd-line.png)
-->
1. Install [.NET Core](https://microsoft.com/net/core/).
2. Create a new .NET Core project.
@ -34,10 +29,6 @@ uid: getting-started
dotnet new web
```
<!-- after RTW uncomment this section
Note: Earlier versions of .NET Core required a `t` parameter, that is, `dotnet new -t web`. If you get an error running `dotnet new web`, install the latest [.NET Core](https://microsoft.com/net/core). `dotnet --info` displays the .NET Core version. You should have version 2.0.0 or later.
-->
4. Run the app.
The `dotnet run` command builds the app first if needed.

View File

@ -1,6 +1,6 @@
# [Introduction](index.md)
# [Getting Started](getting-started-1.1.md)
# [Getting Started](getting-started.md)
## [Create a Web app](xref:mvc/razor-pages/index)
## [Create a Web API](xref:tutorials/first-web-api)