Suchiman / BlazorDualMode

Demo on how to run dynamically in client or server side mode
MIT License
145 stars 24 forks source link

endpoints.MapBlazorHub<T>("app") instead of endpoints.MapBlazorHub() causing error #9

Closed shahriarhossain closed 4 years ago

shahriarhossain commented 4 years ago

With the release of .NET Core 3 , now we can't do the following steps: endpoints.MapBlazorHub("app") Instead we need to call endpoints.MapBlazorHub();

Need help resolving this.

Suchiman commented 4 years ago

Sorry, the instructions in the README are still a bit out of date. Check this commit https://github.com/Suchiman/BlazorDualMode/commit/fad4a6c934a1e69703e1d81ad254465176f227f1

shahriarhossain commented 4 years ago

Thanks. Issue resolved.