Hello,
The dotnet (C#) drivers 2.11 brings supports for Snappy compression.
When the driver is installed from NuGet, this adds 3 content files to the targeted project.
(snappy32.dll, snappy64.dll, libzstd.dll)
As those libraries are defined as content files and not references, they are not copied over the project during a simple NuGet restore.
When working with VCS (GIT, svn, …), it then mandatory to add those files to the repository.
This is really annoying, because one rule of thumb is to avoid pushing binaries to any VCS.
Is there an easy way to workaround this ?
Many thanks in advance for your suggestions