This might be helpful information for others, as it cost me too much time to resolve.
I recently updated to Rider 2022.3.2 and afterwards I could no longer debug Blazor Wasm apps in neither Chrome nor Edge. The apps functioned correctly when Run. The browser error was:
NotSupportedException: Required Plugin ‘ProfilingFeature’ was not registered
Using another computer with the previous Rider 2022.3.1, debugging worked without an issue.
Eventually, I resolved the problem by configuring ServiceStack profiling, as described here:
https://docs.servicestack.net/admin-ui-profiling
public class ConfigureProfiling : IHostingStartup
{
public void Configure(IWebHostBuilder builder)
{
builder.ConfigureAppHost(host => {
host.Plugins.AddIfDebug(new RequestLogsFeature {
EnableResponseTracking = true,
});
host.Plugins.AddIfDebug(new ProfilingFeature {
IncludeStackTrace = true,
});
});
}
}
No idea, why a Rider update required me to add a ServiceStack profiling configuration, but with the above added to my application, browser debugging worked again.
(FYI: Windows 10; Net7, ServiceStack 6.5.1; Blazor WASM)