2016-10-29 01:35:15 +08:00
---
2018-05-11 00:40:06 +08:00
title: Get started with ASP.NET Core
2016-10-29 01:35:15 +08:00
author: rick-anderson
2019-05-14 09:47:05 +08:00
description: A short tutorial that creates and runs a basic Hello World app using ASP.NET Core.
2018-01-29 23:21:31 +08:00
ms.author: riande
2018-05-11 00:40:06 +08:00
ms.custom: mvc
2019-09-23 08:46:16 +08:00
ms.date: 09/22/2019
2016-10-29 01:35:15 +08:00
uid: getting-started
---
2018-10-05 05:12:56 +08:00
# Tutorial: Get started with ASP.NET Core
2019-05-14 09:47:05 +08:00
This tutorial shows how to use the .NET Core command-line interface to create and run an ASP.NET Core web app.
2018-12-04 06:52:20 +08:00
You'll learn how to:
2018-10-05 05:12:56 +08:00
> [!div class="checklist"]
> * Create a web app project.
2019-05-14 09:47:05 +08:00
> * Trust the development certificate.
2018-10-05 05:12:56 +08:00
> * Run the app.
> * Edit a Razor page.
At the end, you'll have a working web app running on your local machine.
![Web app home page ](_static/home-page.png )
## Prerequisites
2018-10-02 02:12:20 +08:00
2019-09-23 10:28:48 +08:00
[!INCLUDE[ ](~/includes/3.0-SDK.md )]
2018-05-31 03:48:08 +08:00
2018-10-05 05:12:56 +08:00
## Create a web app project
2018-05-31 03:48:08 +08:00
2018-12-04 06:52:20 +08:00
Open a command shell, and enter the following command:
2018-05-31 03:48:08 +08:00
2019-09-18 05:01:04 +08:00
```dotnetcli
2018-12-04 06:52:20 +08:00
dotnet new webapp -o aspnetcoreapp
```
2018-05-31 03:48:08 +08:00
2019-09-23 08:46:16 +08:00
The preceding command:
* Creates a new web app.
2019-10-03 12:34:29 +08:00
* The `-o aspnetcoreapp` parameter creates a directory named *aspnetcoreapp* with the source files for the app.
2019-09-23 08:46:16 +08:00
2019-05-14 09:47:05 +08:00
### Trust the development certificate
2018-10-05 05:12:56 +08:00
2018-12-04 06:52:20 +08:00
Trust the HTTPS development certificate:
2018-06-03 03:42:05 +08:00
# [Windows](#tab/windows)
2019-09-18 05:01:04 +08:00
```dotnetcli
2018-12-04 06:52:20 +08:00
dotnet dev-certs https --trust
```
2018-06-03 03:42:05 +08:00
2018-12-04 06:52:20 +08:00
The preceding command displays the following dialog:
2018-06-03 03:42:05 +08:00
2019-02-27 07:04:59 +08:00
![Security warning dialog ](~/getting-started/_static/cert.png )
2018-06-03 03:42:05 +08:00
2018-12-04 06:52:20 +08:00
Select **Yes** if you agree to trust the development certificate.
2018-06-03 03:42:05 +08:00
# [macOS](#tab/macos)
2019-09-18 05:01:04 +08:00
```dotnetcli
2018-12-04 06:52:20 +08:00
dotnet dev-certs https --trust
```
2018-06-03 03:42:05 +08:00
2018-12-04 06:52:20 +08:00
The preceding command displays the following message:
2018-05-31 03:48:08 +08:00
2019-03-13 09:49:51 +08:00
*Trusting the HTTPS development certificate was requested. If the certificate is not already trusted we will run the following command:* `'sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain <<certificate>>'`
2019-03-19 22:42:44 +08:00
This command might prompt you for your password to install the certificate on the system keychain. Enter your password if you agree to trust the development certificate.
2018-06-03 03:42:05 +08:00
# [Linux](#tab/linux)
2018-12-04 06:52:20 +08:00
See the documentation for your Linux distribution on how to trust the HTTPS development certificate.
2018-06-03 03:42:05 +08:00
---
2019-02-27 07:04:59 +08:00
For more information, see [Trust the ASP.NET Core HTTPS development certificate ](xref:security/enforcing-ssl#trust-the-aspnet-core-https-development-certificate-on-windows-and-macos )
2018-10-05 05:12:56 +08:00
## Run the app
2016-10-29 01:35:15 +08:00
2018-12-04 06:52:20 +08:00
Run the following commands:
2016-10-29 01:35:15 +08:00
2019-09-18 05:01:04 +08:00
```dotnetcli
2018-12-04 06:52:20 +08:00
cd aspnetcoreapp
2019-09-27 03:39:53 +08:00
dotnet watch run
2018-12-04 06:52:20 +08:00
```
2016-10-29 01:35:15 +08:00
2019-10-02 02:11:41 +08:00
After the command shell indicates that the app has started, browse to [https://localhost:5001 ](https://localhost:5001 ).
2018-05-08 04:25:07 +08:00
2018-10-05 05:12:56 +08:00
## Edit a Razor page
2018-05-11 00:40:06 +08:00
2019-09-27 03:39:53 +08:00
Open *Pages/Index.cshtml* and modify and save the page with the following highlighted markup:
2018-05-08 04:25:07 +08:00
2018-12-12 05:04:24 +08:00
[!code-cshtml[ ](sample/index.cshtml?highlight=9 )]
2018-05-08 04:25:07 +08:00
2019-09-27 03:39:53 +08:00
Browse to [https://localhost:5001 ](https://localhost:5001 ), refresh the page and verify the changes are displayed.
2018-05-08 04:25:07 +08:00
2018-10-05 05:12:56 +08:00
## Next steps
2018-05-08 04:25:07 +08:00
2018-10-05 05:12:56 +08:00
In this tutorial, you learned how to:
2018-05-08 04:25:07 +08:00
2018-10-05 05:12:56 +08:00
> [!div class="checklist"]
> * Create a web app project.
2019-05-14 09:47:05 +08:00
> * Trust the development certificate.
2018-10-05 05:12:56 +08:00
> * Run the project.
> * Make a change.
2018-05-08 04:25:07 +08:00
2019-02-23 04:44:53 +08:00
To learn more about ASP.NET Core, see the recommended learning path in the introduction:
2018-09-17 03:14:07 +08:00
2018-10-05 05:12:56 +08:00
> [!div class="nextstepaction"]
2019-02-23 04:44:53 +08:00
> <xref:index#recommended-learning-path>