Blazor Remote Debugging – Android

Description on how to do Remote Debugging websites on Android

Starting the new blazor project as described in it’s documentation

dotnet new blazorwasm -o Solution --hosted
cd Solution/Server
dotnet watch

And we’re greeted by the typical Blazor start

The ports on which your page will be shown are set random on project creation. You can find (and change) them in “launchSettings.json”.

Continue reading “Blazor Remote Debugging – Android”