From 8e7558701323963098e32193b80abefd36329006 Mon Sep 17 00:00:00 2001 From: Tom Dykstra Date: Fri, 10 Mar 2023 10:42:52 -0800 Subject: [PATCH] Remove manual package installations from VS tab (#28636) --- .../tutorials/first-mvc-app/adding-model.md | 22 +------------------ 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/aspnetcore/tutorials/first-mvc-app/adding-model.md b/aspnetcore/tutorials/first-mvc-app/adding-model.md index b90fa48ca5..61b1d02c61 100644 --- a/aspnetcore/tutorials/first-mvc-app/adding-model.md +++ b/aspnetcore/tutorials/first-mvc-app/adding-model.md @@ -58,27 +58,7 @@ The question mark after `string` indicates that the property is nullable. For mo # [Visual Studio](#tab/visual-studio) -From the **Tools** menu, select **NuGet Package Manager** > **Package Manager Console** (PMC). - -![PMC menu](~/tutorials/first-mvc-app/adding-model/_static/pmc5.png) - - - -In the PMC, run the following commands: - -```powershell -Install-Package Microsoft.VisualStudio.Web.CodeGeneration.Design -Install-Package Microsoft.EntityFrameworkCore.Design -Install-Package Microsoft.EntityFrameworkCore.SqlServer -``` - -The preceding commands add: - -* The EF Core SQL Server provider. The provider package installs the EF Core package as a dependency. -* The utilities used by the packages installed automatically in the scaffolding step, later in the tutorial. +Visual Studio automatically installs the required packages. # [Visual Studio Code](#tab/visual-studio-code)