There does not seem to be any particular guidance on what needs to be deployed when consuming a .net standard 2.0 package into the 4.6.2 framework build.
We have a large 4.6.2 project that has one assembly using Microsoft.AspNetCore.SignalR.Client via nuget package. This ends up bringing in netstandard 2.0 and it's huge pile of assemblies to our output folder (100+ assemblies) but the automatic binding redirects written to the config file only list about 64 of them.
My question is do I only need to deploy the ones listed in the .config file tagged with bindingRedirect or do you just deploy all of the extra "shim" assemblies?