2017-08-09 07:22:51 +08:00
---
title: Getting Started with ASP.NET Core 1.1
author: rick-anderson
description: A quick tutorial that creates and runs a simple Hello World app using ASP.NET Core 1.1.
manager: wpickett
2018-01-29 23:21:31 +08:00
ms.author: riande
2017-08-09 07:22:51 +08:00
ms.date: 08/07/2017
ms.prod: asp.net-core
2018-01-29 23:21:31 +08:00
ms.technology: aspnet
ms.topic: get-started-article
2017-08-09 07:22:51 +08:00
uid: getting-started-1.1
---
# Getting Started with ASP.NET Core 1.1
> [!NOTE]
2017-08-15 00:59:40 +08:00
> These instructions are for ASP.NET Core 1.1. Looking for the latest version? See [the current version of this tutorial](xref:getting-started).
2017-08-09 07:22:51 +08:00
2017-08-15 00:59:40 +08:00
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 ).
2017-08-09 07:22:51 +08:00
2. Create a folder for a new .NET Core project.
On macOS and Linux, open a terminal window. On Windows, open a command prompt.
```terminal
mkdir aspnetcoreapp
cd aspnetcoreapp
```
2017-08-15 00:59:40 +08:00
2. If you have installed a later SDK version on your machine, create a *global.json* file to select the 1.0.4 SDK.
2017-08-09 07:22:51 +08:00
```json
{
"sdk": { "version": "1.0.4" }
}
```
2. Create a new .NET Core project.
```terminal
dotnet new web
```
3. Restore the packages.
```terminal
dotnet restore
```
4. Run the app.
2018-02-25 00:10:22 +08:00
The [dotnet run ](/dotnet/core/tools/dotnet-run ) command builds the app first if needed.
2017-08-09 07:22:51 +08:00
```terminal
dotnet run
```
5. Browse to `http://localhost:5000`
<!-- H3 to avoid a single - entry internal TOC -->
### Next steps
For getting-started tutorials, see [ASP.NET Core Tutorials ](tutorials/index.md )
For an introduction to ASP.NET Core concepts and architecture, see [ASP.NET Core Introduction ](index.md ) and [ASP.NET Core Fundamentals ](fundamentals/index.md ).
An ASP.NET Core app can use the .NET Core or .NET Framework Base Class Library and runtime. For more information, see [Choosing between .NET Core and .NET Framework ](https://docs.microsoft.com/dotnet/articles/standard/choosing-core-framework-server ).