Error when migrating from Legacy Blazor WASM into Blazor 8 ServerInteractive
Hellol, As in title I migrated project (Copy pasted old project files into new Blazor template). Page renders visually, but I have no interactivity and at startup I get error
3 Replies
Hello sir, have you thought about updating the configuration in your new project's Startup.cs or Program.cs file to match what it was in your old project? I think that's a great idea, especially when it comes to settings like SignalR and Blazor Server.
make sure you're adding the same middleware and registering the same services. You don't want to miss any crucial configurations that could affect how your app behaves.
Um, It's always a good idea to double-check your settings when moving from one project to another, so review your Startup.cs or Program.cs file and make sure everything matches up with your old project.
Yes, I did that. Meanwhile I found that I am probably victim of this issue https://github.com/dotnet/aspnetcore/issues/56813
GitHub
Uncaught Error: No interop methods are registered for renderer 1 · ...
Is there an existing issue for this? I have searched the existing issues Describe the bug Recently we upgraded our Blazor Server App from .NET 7 to .NET 8, before that, we never encounter below iss...
And there are plans to fix that in .NET 10
☠️