I am using Rider to develop Blazor WASM application, sucesfully, without issues. I would like to remote debug it, but I am yet to find a conclusive way to start up a remote debug connection to the blazor application.
The thing is, I have cookie-based authentication under Laravel, which ultimately serves as a direct host of my blazor application. So I don’t have to separate the workflows and deal with CORS and many other settings, it would be very best if I could just connect to my built application with Debug symbols that a remote Laravel server hosts, and not deal with two separate domains where one is my Laravel server+API and the other is my Blazor WASM serving protocol from Rider.
Has any one of you ideas how to approach this ? I note that I would be very glad if I could just get past the hussle of separating frontend from my backend.
In the past days, I came up empty-handed… I read an extensive blog about how Rider works in Debug session under the hood here: https://blog.jetbrains.com/dotnet/2023/11/07/how-jetbrains-rider-implemented-net-webassembly-debugging/, but it came up to no help.
I also have been unable to start Chromium based devtool under the Laravel hosted app, as my 127.0.0.1:8000/app/_framework/debug?url= gets me 404.
Classic workflow of debugging under the Rider umbrella works as expected, of course.