I need help binding an Azure Signal R service to an existing App service, I haven't found any useful documentation about this, only guides in how to bind them on scratch but never for existing services. My Azure App service is hosting a Backend Signal R server and I need to add the Azure Signal R services to this existing App service, any sugestions?
Thanks for your time!
If you wanna add Azure signalR to your existing App service, you need to
Add a reference to the Microsoft.Azure.SignalR NuGet package by running the following command:
Open Program.cs and update the code to the following, it calls the AddSignalR() and AddAzureSignalR() methods to use Azure SignalR Service:
More steps please refer to this link.
Please note that don't select serverless in ServiceMode dropdown list.
Please refer to link