diff --git a/aspnetcore/tutorials/first-mvc-app/start-mvc.md b/aspnetcore/tutorials/first-mvc-app/start-mvc.md index 1ca4dec32d..fcbfc7587f 100644 --- a/aspnetcore/tutorials/first-mvc-app/start-mvc.md +++ b/aspnetcore/tutorials/first-mvc-app/start-mvc.md @@ -32,28 +32,22 @@ At the end, you have an app that can manage and display movie data. # [Visual Studio](#tab/visual-studio) -From Visual Studio welcome screen, select **New**. +* From the Visual Studio select **Create a new project**. -![File > New > Project](start-mvc/_static/alt_new_project.png) +* Selecct **ASP.NET Core Web Application** and then select **Next**. -Complete the **New Project** dialog: +![new ASP.NET Core Web Application](start-mvc/_static/np_2.1.png) -* In the left pane, select **.NET Core** -* In the center pane, select **ASP.NET Core Web Application (.NET Core)** -* Name the project "MvcMovie" (It's important to name the project "MvcMovie" so when you copy code, the namespace will match.) -* select **OK** +* Name the project **MvcMovie** and select **Create**. It's important to name the project **MvcMovie** so when you copy code, the namespace will match. -![New project dialog, .NET Core in left pane, ASP.NET Core web ](start-mvc/_static/new_project2-21.png) + ![new ASP.NET Core Web Application](start-mvc/_static/config.png) -Complete the **New ASP.NET Core Web Application (.NET Core) - MvcMovie** dialog: -* In the version selector drop-down box select **ASP.NET Core 2.2** -* Select **Web Application (Model-View-Controller)** -* select **OK**. +* Select **Web Application(Model-View-Controller)**, and then select **Create**. ![New project dialog, .NET Core in left pane, ASP.NET Core web ](start-mvc/_static/new_project22-21.png) -Visual Studio used a default template for the MVC project you just created. You have a working app right now by entering a project name and selecting a few options. This is a basic starter project, and it's a good place to start. +Visual Studio used the default template for the MVC project you just created. You have a working app right now by entering a project name and selecting a few options. This is a basic starter project, and it's a good place to start. # [Visual Studio Code](#tab/visual-studio-code) diff --git a/aspnetcore/tutorials/first-mvc-app/start-mvc/_static/alt_new_project.png b/aspnetcore/tutorials/first-mvc-app/start-mvc/_static/alt_new_project.png deleted file mode 100644 index c84b762a0e..0000000000 Binary files a/aspnetcore/tutorials/first-mvc-app/start-mvc/_static/alt_new_project.png and /dev/null differ diff --git a/aspnetcore/tutorials/first-mvc-app/start-mvc/_static/config.png b/aspnetcore/tutorials/first-mvc-app/start-mvc/_static/config.png new file mode 100644 index 0000000000..41a462f471 Binary files /dev/null and b/aspnetcore/tutorials/first-mvc-app/start-mvc/_static/config.png differ diff --git a/aspnetcore/tutorials/first-mvc-app/start-mvc/_static/new_project2-21.png b/aspnetcore/tutorials/first-mvc-app/start-mvc/_static/new_project2-21.png deleted file mode 100644 index 6d3f3fbdb2..0000000000 Binary files a/aspnetcore/tutorials/first-mvc-app/start-mvc/_static/new_project2-21.png and /dev/null differ diff --git a/aspnetcore/tutorials/first-mvc-app/start-mvc/_static/new_project22-21.png b/aspnetcore/tutorials/first-mvc-app/start-mvc/_static/new_project22-21.png index d63268935b..6a7f12c4c7 100644 Binary files a/aspnetcore/tutorials/first-mvc-app/start-mvc/_static/new_project22-21.png and b/aspnetcore/tutorials/first-mvc-app/start-mvc/_static/new_project22-21.png differ diff --git a/aspnetcore/tutorials/first-mvc-app/start-mvc/_static/np_2.1.png b/aspnetcore/tutorials/first-mvc-app/start-mvc/_static/np_2.1.png new file mode 100644 index 0000000000..922475f231 Binary files /dev/null and b/aspnetcore/tutorials/first-mvc-app/start-mvc/_static/np_2.1.png differ