When I make a template project using Avalonia extension for Visual Studio, it doesn't even use Avalonia 12 (though the release notes talk about it's release). I then manually update .csproj files from Avalonia version 11.3.12 to 12.0.2, build and run Desktop project. That works fine.
But when I run the Browser project I get:
'AppBuilder' does not contain a definition for 'StartBrowserAppAsync' and no accessible extension method 'StartBrowserAppAsync' accepting a first argument of type 'AppBuilder' could be found (are you missing a using directive or an assembly reference?)'
I understand v12 took away Avalonia.Browser namespace, but they don't seem to point or provide the 'new way' of building the browser project.
FYI reason I use .NET8 is cause my job won't mass deploy .NET10 right now.
Any help is extremely appreciated.