I have Application A that is developed in .NET Core 2.1 and Application B that is developed in .NET Framework 4.7.1. They have a shared library/assembly that is developed using .NET Standard 2.0. This works great, I can compile a single instance of this library and share it between Application A and Application B. But this requires two copies of the assembly in each applications bin folder. If Application A and Application B are deployed on the same machine I would like to update a single instance of the shared assembly in a single location and have both Application A and Application B updated. Is there a way that Application A and Application B can look in the same location for this assembly given that one is using .NET Core and the other is using .NET Framework?I have Application A that is developed in .NET