Skip to content

Only include STJ on net standard #3123

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ This release also includes changes from <<release-3-7-XXX, 3.7.XXX>>.
* Removed the `@RemoteOnly` testing tag in Gherkin as lambda tests have all been moved to the Java test suite.
* Updated gremlin-javascript to use GraphBinary as default instead of GraphSONv3
* Renamed many types in the grammar for consistent use of terms "Literal", "Argument", and "Varargs"
* Changed `gremlin-net` so that System.Text.Json is only listed as an explicit dependency when it is not available from the framework.

== TinkerPop 3.7.0 (Gremfir Master of the Pan Flute)

Expand Down
2 changes: 1 addition & 1 deletion gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ NOTE that versions suffixed with "-rc" are considered release candidates (i.e. p
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
<PackageReference Include="Polly" Version="8.5.1" />
</ItemGroup>

Expand All @@ -84,6 +83,7 @@ NOTE that versions suffixed with "-rc" are considered release candidates (i.e. p
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>

<ItemGroup>
Expand Down