I'm using SignalR, which maps to asp.net application on virtual path "~/signalr". SignalR dynamically creates javascript proxy hubs on app start with virtual path "~/signalr/hubs".
So the url "[http://myapp]/signalr/hubs"
is where dynamic javascript content is.
How can I add this virtual path to Asp.Net Web Optimization Bundling?
Asp.Net Web Optimization Framework starting from 1.1 supports VirtuPathProvider's: ASP.NET bundling/minification: including dynamically generated Javascript
Actually I don't understand how to use these VPP's. Could somebody explain in details or better give an example?