Hi,
I have a version conflict that I don't know how to approach:
I have written a c# library to parse .msg files, using the msgReader Nuget. This nuget requires version 3.0.1.0 of Microsoft.IO.RecyclableMemoryStream.
Now it happens, that we have an older version (1.4.0) of this dll in PackagesLocalDirectory\bin, which blocks my library from working.
in the Devbox I can solve easily replacing the dll in PackagesLocalDirectory\bin with the newer version, but the deploy in Tier-2 fails.
How can I solve this? we have tried to include the PackagesLocalDirectory\bin in the deployable package, but did not work.
has anybody encountered the same issue?
Ulli