FlorianHockmann commented on code in PR #2299: URL: https://github.com/apache/tinkerpop/pull/2299#discussion_r1371467487
########## gremlin-dotnet/example/example.csproj: ########## @@ -0,0 +1,14 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <OutputType>Exe</OutputType> + <TargetFramework>net7.0</TargetFramework> + <ImplicitUsings>enable</ImplicitUsings> + <Nullable>enable</Nullable> + </PropertyGroup> + + <ItemGroup> + <PackageReference Include="Gremlin.Net" Version="3.7.0" /> Review Comment: > Personally I'm somewhat indifferent to how/if the versions should be maintained here. The main value I see in these examples is demonstrating basic driver setup, connection, and querying. This has remained relatively constant over the last few major releases and I think that a 3.7.x example is still useful for someone attempting to use 3.6.x. You're probably right and in addition to that, I'm not sure if it's worth any effort to maintain different examples for the different versions. Most users will just use the latest version any way. That's at least the case for .NET according to the NuGet download statistics. So, from my side, we can stay on 3.7.0 here. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
