Skip to content

Commit af1dbfc

Browse files
committed
Updates
1 parent 38809f8 commit af1dbfc

File tree

1 file changed

+40
-2
lines changed
  • aspnetcore/blazor/tutorials/movie-database-app

1 file changed

+40
-2
lines changed

aspnetcore/blazor/tutorials/movie-database-app/part-2.md

Lines changed: 40 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Paste all of the following commands at the prompt (`>`) of the **Terminal**. Whe
119119

120120
When you paste multiple commands, all of the commands execute except the last one. The last command doesn't execute until you press <kbd>Enter</kbd> on the keyboard.
121121

122-
:::moniker range=">= aspnetcore-10.0 < aspnetcore-9.0"
122+
:::moniker range=">= aspnetcore-10.0"
123123

124124
```dotnetcli
125125
dotnet tool install --global dotnet-aspnet-codegenerator
@@ -170,6 +170,25 @@ The preceding update to the package reference is a workaround for a breaking cha
170170

171171
:::moniker-end
172172

173+
:::moniker range="< aspnetcore-9.0"
174+
175+
```dotnetcli
176+
dotnet tool install --global dotnet-aspnet-codegenerator
177+
dotnet tool install --global dotnet-ef
178+
dotnet add package Microsoft.EntityFrameworkCore.SQLite
179+
dotnet add package Microsoft.VisualStudio.Web.CodeGeneration.Design
180+
dotnet add package Microsoft.EntityFrameworkCore.SqlServer
181+
dotnet add package Microsoft.EntityFrameworkCore.Tools
182+
dotnet add package Microsoft.AspNetCore.Components.QuickGrid
183+
dotnet add package Microsoft.AspNetCore.Components.QuickGrid.EntityFrameworkAdapter
184+
dotnet add package Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore
185+
```
186+
187+
> [!IMPORTANT]
188+
> After the first eight commands execute, make sure that you press <kbd>Enter</kbd> on the keyboard to execute the last command.
189+
190+
:::moniker-end
191+
173192
> [!NOTE]
174193
> The preceding commands are .NET CLI commands, and .NET CLI commands are executed when entered at a [PowerShell](/powershell/) prompt, which is the default command shell of the VS Code **Terminal**.
175194
@@ -200,7 +219,7 @@ Paste all of the following commands at the prompt (`>`) of the command shell. W
200219

201220
When you paste multiple commands, all of the commands execute except the last one. The last command doesn't execute until you press <kbd>Enter</kbd> on the keyboard.
202221

203-
:::moniker range=">= aspnetcore-10.0 < aspnetcore-9.0"
222+
:::moniker range=">= aspnetcore-10.0"
204223

205224
```dotnetcli
206225
dotnet tool install --global dotnet-aspnet-codegenerator
@@ -251,6 +270,25 @@ The preceding update to the package reference is a workaround for a breaking cha
251270

252271
:::moniker-end
253272

273+
:::moniker range="< aspnetcore-9.0"
274+
275+
```dotnetcli
276+
dotnet tool install --global dotnet-aspnet-codegenerator
277+
dotnet tool install --global dotnet-ef
278+
dotnet add package Microsoft.EntityFrameworkCore.SQLite
279+
dotnet add package Microsoft.VisualStudio.Web.CodeGeneration.Design
280+
dotnet add package Microsoft.EntityFrameworkCore.SqlServer
281+
dotnet add package Microsoft.EntityFrameworkCore.Tools
282+
dotnet add package Microsoft.AspNetCore.Components.QuickGrid
283+
dotnet add package Microsoft.AspNetCore.Components.QuickGrid.EntityFrameworkAdapter
284+
dotnet add package Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore
285+
```
286+
287+
> [!IMPORTANT]
288+
> After the first eight commands execute, make sure that you press <kbd>Enter</kbd> on the keyboard to execute the last command.
289+
290+
:::moniker-end
291+
254292
Save the project file.
255293

256294
The preceding commands add:

0 commit comments

Comments
 (0)