I'm trying to create a new Blazor WebAssembly application with a backend API server. However, while creating the project in Visual Studio 2022, I can't find the checkbox for "ASP.NET Core Hosted" that was present in previous versions.
According to Microsoft's documentation, in .NET 8 and later:
- The "ASP.NET Core Hosted" option has been removed from the Blazor WebAssembly template
- A new unified "Blazor Web App" template has been introduced (which is the one I probably will be using)
- This new template is meant to replace both Blazor Server and hosted Blazor WebAssembly scenarios
How do I create this type of application structure using the new template system ?
I'm using Visual Studio 2022 and my target framework will be .NET 9.