Github user FlorianHockmann commented on a diff in the pull request:
https://github.com/apache/tinkerpop/pull/716#discussion_r139976910
--- Diff: gremlin-dotnet/glv/Gremlin.Net.csproj.template ---
@@ -25,7 +25,9 @@ limitations under the License.
</PropertyGroup>
<PropertyGroup Label="Package">
- <Version>${projectVersion}</Version>
+ <Version>$projectVersion</Version>
+ <FileVersion>$projectVersion.0</FileVersion>
--- End diff --
A good option to simplify this might be with the `VersionPrefix` and
`VersionSuffix` elements:
```
<VersionPrefix>3.2.7</VersionPrefix>
<VersionSuffix>rc1</VersionSuffix>
```
Then we can use the `VersionPrefix` directly for the `FileVersion`.
---