2016-10-29 01:35:15 +08:00
|
|
|
---
|
2017-07-01 07:47:15 +08:00
|
|
|
title: ASP.NET Core tutorials
|
2017-10-17 06:00:11 +08:00
|
|
|
author: rick-anderson
|
2017-03-17 08:21:33 +08:00
|
|
|
description: A list of step-by-step guides for learning how to develop ASP.NET Core applications.
|
2016-11-18 04:13:02 +08:00
|
|
|
keywords: ASP.NET Core,
|
2017-10-17 06:00:11 +08:00
|
|
|
ms.author: riande
|
2016-10-29 01:35:15 +08:00
|
|
|
manager: wpickett
|
2017-10-17 06:00:11 +08:00
|
|
|
ms.date: 10/14/2017
|
2017-06-01 05:55:29 +08:00
|
|
|
ms.topic: get-started-article
|
2016-11-17 08:24:57 +08:00
|
|
|
ms.technology: aspnet
|
2017-03-03 08:50:36 +08:00
|
|
|
ms.prod: asp.net-core
|
2017-05-24 03:08:06 +08:00
|
|
|
uid: tutorials/index
|
2016-10-29 01:35:15 +08:00
|
|
|
---
|
2017-03-17 08:21:33 +08:00
|
|
|
# ASP.NET Core tutorials
|
2016-10-29 01:35:15 +08:00
|
|
|
|
2017-02-02 07:45:15 +08:00
|
|
|
The following step-by-step guides for developing ASP.NET Core applications are available:
|
|
|
|
|
|
|
|
## Building web applications
|
2017-06-17 05:40:44 +08:00
|
|
|
|
2017-07-25 07:05:54 +08:00
|
|
|
[Razor Pages](xref:mvc/razor-pages/index) is the recommended approach to create a Web UI with ASP.NET Core 2.0.
|
|
|
|
|
2017-08-29 07:54:12 +08:00
|
|
|
* [Introduction to Razor Pages in ASP.NET Core](xref:mvc/razor-pages/index)
|
2017-10-17 06:00:11 +08:00
|
|
|
* Create a Razor Pages web app with ASP.NET Core
|
|
|
|
|
|
|
|
* [Razor Pages on Windows](xref:tutorials/razor-pages/index)
|
|
|
|
* [Razor Pages on Mac](xref:tutorials/razor-pages-mac/index)
|
|
|
|
* [Razor Pages with VS Code](xref:tutorials/razor-pages-vsc/index)
|
|
|
|
|
|
|
|
* Create an ASP.NET Core MVC web app
|
|
|
|
|
|
|
|
* [Web app with Visual Studio for Windows](first-mvc-app/index.md)
|
|
|
|
* [Web app with Visual Studio for Mac](first-mvc-app-mac/index.md)
|
|
|
|
* [Web app with Visual Studio Code on Mac or Linux](first-mvc-app-xplat/index.md)
|
|
|
|
|
2017-02-02 07:45:15 +08:00
|
|
|
* [Getting started with ASP.NET Core and Entity Framework Core using Visual Studio](../data/ef-mvc/index.md)
|
|
|
|
* [Building projects with Yeoman](../client-side/yeoman.md)
|
|
|
|
* [Authoring Tag Helpers](../mvc/views/tag-helpers/authoring.md)
|
|
|
|
* [Creating a simple view component](../mvc/views/view-components.md#walkthrough-creating-a-simple-view-component)
|
|
|
|
* [Developing ASP.NET Core applications using dotnet watch](dotnet-watch.md)
|
|
|
|
|
|
|
|
## Building web APIs
|
2017-10-17 06:00:11 +08:00
|
|
|
* Create a Web API with ASP.NET Core
|
|
|
|
|
|
|
|
* [Web API with Visual Studio for Windows](first-web-api.md)
|
|
|
|
* [Web API with Visual Studio for Mac](xref:tutorials/first-web-api-mac)
|
|
|
|
* [Web API with Visual Studio Code](web-api-vsc.md)
|
|
|
|
|
2017-10-10 03:43:00 +08:00
|
|
|
* [ASP.NET Core Web API Help Pages using Swagger](web-api-help-pages-using-swagger.md)
|
2017-02-02 07:45:15 +08:00
|
|
|
* [Creating backend web services for native mobile applications](../mobile/native-mobile-backend.md)
|
|
|
|
|
|
|
|
## Working with data
|
|
|
|
* [Getting started with ASP.NET Core and Entity Framework Core using Visual Studio](../data/ef-mvc/index.md)
|
|
|
|
* [ASP.NET Core with EF Core - new database](https://docs.microsoft.com/ef/core/get-started/aspnetcore/new-db)
|
|
|
|
* [ASP.NET Core with EF Core - existing database](https://docs.microsoft.com/ef/core/get-started/aspnetcore/existing-db)
|
|
|
|
|
|
|
|
## Authentication and authorization
|
|
|
|
* [Enabling authentication using Facebook, Google and other external providers](../security/authentication/social/index.md)
|
|
|
|
* [Account Confirmation and Password Recovery](../security/authentication/accconfirm.md)
|
|
|
|
* [Two-factor authentication with SMS](../security/authentication/2fa.md)
|
|
|
|
|
|
|
|
## Client-side development
|
|
|
|
* [Using Gulp](../client-side/using-gulp.md)
|
|
|
|
* [Using Grunt](../client-side/using-grunt.md)
|
|
|
|
* [Manage client-side packages with Bower](../client-side/bower.md)
|
|
|
|
* [Building beautiful, responsive sites with Bootstrap](../client-side/bootstrap.md)
|
|
|
|
|
|
|
|
## Testing
|
|
|
|
* [Unit Testing in .NET Core using dotnet test](https://docs.microsoft.com/dotnet/articles/core/testing/unit-testing-with-dotnet-test)
|
|
|
|
|
|
|
|
## Publishing and deployment
|
|
|
|
* [Deploy an ASP.NET Core web app to Azure using Visual Studio](publish-to-azure-webapp-using-vs.md)
|
|
|
|
* [Publishing to an Azure Web App with Continuous Deployment](../publishing/azure-continuous-deployment.md)
|
|
|
|
* [Deploy an ASP.NET container to a remote Docker host](https://docs.microsoft.com/azure/vs-azure-tools-docker-hosting-web-apps-in-docker)
|
|
|
|
* [ASP.NET Core on Nano Server](nano-server.md)
|
2017-07-11 02:20:50 +08:00
|
|
|
* [ASP.NET Core and Azure Service Fabric](https://docs.microsoft.com/azure/service-fabric/service-fabric-add-a-web-frontend)
|
2017-02-02 07:45:15 +08:00
|
|
|
|
2017-05-24 03:21:31 +08:00
|
|
|
<a name="download"></a>
|
2017-05-24 03:08:06 +08:00
|
|
|
## How to download a sample
|
2017-09-12 09:58:51 +08:00
|
|
|
1. [Download the ASP.NET repository zip file](https://codeload.github.com/aspnet/Docs/zip/master).
|
2017-05-24 03:08:06 +08:00
|
|
|
1. Unzip the *Docs-master.zip* file.
|
|
|
|
1. Use the URL in the sample link to help you navigate to the sample directory.
|