Hi,
We have an application that has Signal R on both a .net core server and an asp.net server.
We have found that both ngrx-signalr libraries use the same actions and when we try to dispatch an action intended for ngrx-signalr-core the ngrx-signalr library picks it up and calls its implementation.
This then fails because the signal R on the .net core server cannot use the implementation intended for the on the asp.net server.
Is there a way for both the ngrx-signalr and ngrx-signalr-core libraries to run in the same application.
Thanks