What blazor template do I start from...
I templated out Blazor Server - and noticed after updating to .net 9 that MS no longer even offers that template anymore when spinning up projects in VS2022... Is going the signalR route for intranet apps (These are purely just CRUD apps for our internal databases) a bad call if it seems like MS moving to kill it already? If so, wtf do I use? Selecting the Blazor Webapp starter I am greeted with the option to do Server, Client or Auto interactive rendering.
I don't want to sell my team on something if it's look obsolete already, basically.
1 Reply
It is not obsolete.
. Net 8 introduced rendermodes and thus the possibility of mixing WASM and Server interactivity. Auto switches between them, automatically.
But with this introduction MS moved to a new template, which will allow you to do this mixing if you like.
There is also a pure WASM template.
And if you want your old familiar pure Server app back. Just create a new project with a global server rendermode and delete the second project.