I'm trying to test the new dotnet 6 feature with hosting blazor in desktop applications, according to this article.
So im trying to use the command
dotnet new blazorhybrid -o BlazorHybrid
which does not work since i do not have the template it seems.
When searching for it with
dotnet new blazorhybrid --search
I can find the template which I am looking for. The command gives the instuction to install the template with
dotnet new --install Microsoft.MobileBlazorBindings.Templates
which seems to do nothing but listing my current available templates. So, how do I install this template? Am I missing some kind of prerequisite? I have net6 preview 1 installed.