Check and Update .NET 10 Project Templates
List all installed templates, all columns (this will not show update status, though):
dotnet new list --columns-all
Show templates that have updates available, but don’t update them:
dotnet new update --check-only
Update all templates to latest version(s):
dotnet new update