I have a Solution that has 15 libraries (13 .NET Standard 2.0.2 and 2 Framework 4.7.1) and 7 web projects using Framework 4.7.1
The 2 libraries using Framework 4.7.1 all is working as expected with references and finding dependencies (they are encapsulated all unto their own so do not require any dependency on any .NET Standard library)
To fix the issue, I have tried:
isolating a library to where it does not require any dependency on another .net library (still generates issue)
Adding
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> <GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType> <RestoreProjectStyle>PackageReference</RestoreProjectStyle>
I cannot seem to resolve error, any suggestions?
Thanks in advance and for all replies