Github user jorgebay commented on the issue:
https://github.com/apache/tinkerpop/pull/716
We forgot to consider that, as we are strong named assembly, we must avoid
changing the assembly version for patch versions to minimize the need of
user-defined binding redirects.
In our case, it would mean to set a fix assembly version within the same
major and minor. The generated Gremlin.Net.csproj should contain the 3
following xml tags:
```xml
<!-- Version: 3.2.7 -->
<Version>$projectVersion</Version>
<!-- FileVersion: 3.2.7.0 -->
<FileVersion>$projectVersion.0</FileVersion>
<!-- AssemblyVersion: 3.2.0.0 -->
<AssemblyVersion>$projectMajorMinorVersion.0.0</AssemblyVersion>
```
---