Is the output from the SignalR hub proxy generator essentially the same as the dynamically generated hub proxy file? If not, what are the differences?
Some background on my question: I am struggling creating the hub proxy using the command line tool due to dependency issues during execution and I do think obtaining the dynamically generated file might be an easier way.
As stated on this ASP.NET page about using hubs with SignalR:
To make long story short:
This makes your life easier with real JS errors if you mistype SignalR hubs or method names.
With proxy:
Without proxy:
If you need to generate the Proxy file once instead of generating it at runtime, you can follow this section, which allows you generate it beforehand (for caching or bundling behavior).