I will start this off by saying that I am new to SignalR. I know the basic concepts, but have never personally written an app using SignalR until now.
With a little effort I have the basic Azure SignalR ChatRoom example running locally connected to an Azure SignalR instance (will only run using 'dotnet run' from the command line; if started from within Visual Studio it stops as soon as I try to change the name in the JS prompt window).
What I would like to do now is send messages (no need to receive) from a .NET Core console application and have them show up in the chatroom instance the browser is connected to. This is to simulate a background process doing some work and then sending a message to an Azure SignalR hub informing all clients of the outcome.
I created a new .NET Core app and when I try to add the Microsoft.Azure.SignalR
package, I get an error message stating "error: Package 'Microsoft.Azure.SignalR' is incompatible with 'all' frameworks in project 'C:...\TestingAzureSignalR\ChatRoom.Console\ChatRoom.Console.csproj'."
Are there any examples of this anywhere that can help me out? Something as simple as working with the ChatRoom Quickstart example?