.NET 9 Update: First MVC Tutorials Series and improvements
Description
- [ ] Update the entire series and code samples for .NET 9.
- [ ] Consider how we might address the problem of having two commands in a row to copy/paste, but the 2nd only runs if you notice to hit the return key again such as for Add-Migration and Update-Database.
Rick suggested considering an innocuous command at the end such as:
Echo Update complete.
Get-Date
$null = $null
Write-Host "commands complete"
Luke considered splitting the command instruction and instead of grouping the information on what the commands do, separating them between the two commands for each.
There is also the possibility of joining commands with && so an additional return is not required but that might cause some confusion. See 5-23-24 9:02 thread discussion.
Check in with what Luke decided to do for the same issue for Blazor. The same problem exists for the Razor Pages tutorial series as well.
Page URL
https://learn.microsoft.com/en-us/aspnet/core/tutorials/first-mvc-app/start-mvc?view=aspnetcore-8.0&tabs=visual-studio
Content source URL
https://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/tutorials/first-mvc-app/start-mvc.md
Document ID
46a7c2e0-4871-491f-02c2-54f7df2237b1
Article author
@wadepickett
Also don't miss handling #32056 for this series at the same time.