diff --git a/aspnetcore/tutorials/razor-pages/razor-pages-start.md b/aspnetcore/tutorials/razor-pages/razor-pages-start.md index c76a9acddd..e1556d7228 100644 --- a/aspnetcore/tutorials/razor-pages/razor-pages-start.md +++ b/aspnetcore/tutorials/razor-pages/razor-pages-start.md @@ -3,7 +3,7 @@ title: "Tutorial: Get started with Razor Pages in ASP.NET Core" author: rick-anderson description: This series of tutorials shows how to use Razor Pages in ASP.NET Core. Learn how to create a model, generate code for Razor pages, use Entity Framework Core and SQL Server for data access, add search functionality, add input validation, and use migrations to update the model. ms.author: riande -ms.date: 05/30/2019 +ms.date: 6/3/2019 uid: tutorials/razor-pages/razor-pages-start --- @@ -38,13 +38,17 @@ At the end of this tutorial, you'll have a working Razor Pages web app that you' * From the Visual Studio **File** menu, select **New** > **Project**. -* Create a new ASP.NET Core Web Application. Name the project **RazorPagesMovie**. It's important to name the project *RazorPagesMovie* so the namespaces will match when you copy and paste code. +* Create a new ASP.NET Core Web Application and select **Next**. ![new ASP.NET Core Web Application](razor-pages-start/_static/np_2.1.png) -* Select **ASP.NET Core 2.2** in the dropdown, and then select **Web Application**. +* Name the project **RazorPagesMovie**. It's important to name the project *RazorPagesMovie* so the namespaces will match when you copy and paste code code. - ![new ASP.NET Core Web Application](razor-pages-start/_static/np_2_2.2.png) + ![new ASP.NET Core Web Application](razor-pages-start/_static/config.png) + +* Select **ASP.NET Core 2.2** in the dropdown, **Web Application**, and then select **Create**. + +![new ASP.NET Core Web Application](razor-pages-start/_static/np_2_2.2.png) The following starter project is created: diff --git a/aspnetcore/tutorials/razor-pages/razor-pages-start/_static/config.png b/aspnetcore/tutorials/razor-pages/razor-pages-start/_static/config.png new file mode 100644 index 0000000000..49d245866f Binary files /dev/null and b/aspnetcore/tutorials/razor-pages/razor-pages-start/_static/config.png differ diff --git a/aspnetcore/tutorials/razor-pages/razor-pages-start/_static/np_2.1.png b/aspnetcore/tutorials/razor-pages/razor-pages-start/_static/np_2.1.png index b99358c6ec..922475f231 100644 Binary files a/aspnetcore/tutorials/razor-pages/razor-pages-start/_static/np_2.1.png and b/aspnetcore/tutorials/razor-pages/razor-pages-start/_static/np_2.1.png differ diff --git a/aspnetcore/tutorials/razor-pages/razor-pages-start/_static/np_2_2.2.png b/aspnetcore/tutorials/razor-pages/razor-pages-start/_static/np_2_2.2.png index 17a8d2f862..95934798ac 100644 Binary files a/aspnetcore/tutorials/razor-pages/razor-pages-start/_static/np_2_2.2.png and b/aspnetcore/tutorials/razor-pages/razor-pages-start/_static/np_2_2.2.png differ