Skip to content

Commit

Permalink
Use different PackageIds for SystemTextJson and NewtonsoftJson projec…
Browse files Browse the repository at this point in the history
…ts (#862)

* Use different PackageIds for SystemTextJson and NewtonsoftJson projects

* readme
  • Loading branch information
StefH authored Dec 12, 2024
1 parent d548238 commit bb9c03c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ If it's not possible to add that attribute, you need to implement a custom [Cust
|   **EntityFramework.DynamicLinq** | [![NuGet](https://img.shields.io/nuget/v/EntityFramework.DynamicLinq)](https://www.nuget.org/packages/EntityFramework.DynamicLinq) |
|   **Microsoft.EntityFrameworkCore.DynamicLinq** | [![NuGet](https://img.shields.io/nuget/v/Microsoft.EntityFrameworkCore.DynamicLinq)](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.DynamicLinq) |
|   **Z.EntityFramework.Classic.DynamicLinq** | [![NuGet](https://img.shields.io/nuget/v/Z.EntityFramework.Classic.DynamicLinq)](https://www.nuget.org/packages/Z.EntityFramework.Classic.DynamicLinq) |
|   **Z.DynamicLinq.SystemTextJson** | [![NuGet](https://img.shields.io/nuget/v/Z.DynamicLinq.SystemTextJson)](https://www.nuget.org/packages/Z.DynamicLinq.SystemTextJson) |
|   **Z.DynamicLinq.NewtonsoftJson** | [![NuGet](https://img.shields.io/nuget/v/Z.DynamicLinq.NewtonsoftJson)](https://www.nuget.org/packages/Z.DynamicLinq.NewtonsoftJson) |

## Development Details

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<PropertyGroup>
<AssemblyOriginatorKeyFile>../System.Linq.Dynamic.Core/System.Linq.Dynamic.Core.snk</AssemblyOriginatorKeyFile>
<AssemblyTitle>System.Linq.Dynamic.Core</AssemblyTitle>
<PackageId>Z.DynamicLinq.NewtonsoftJson</PackageId>
<Authors>Stef Heyenrath</Authors>
<Description>Contains some extensions for System.Linq.Dynamic.Core to dynamically query a Newtonsoft.Json.JArray</Description>
<PackageTags>system;linq;dynamic;core;dotnet;json</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<PropertyGroup>
<AssemblyOriginatorKeyFile>../System.Linq.Dynamic.Core/System.Linq.Dynamic.Core.snk</AssemblyOriginatorKeyFile>
<AssemblyTitle>System.Linq.Dynamic.Core</AssemblyTitle>
<PackageId>Z.DynamicLinq.SystemTextJson</PackageId>
<Authors>Stef Heyenrath</Authors>
<Description>Contains some extensions for System.Linq.Dynamic.Core to dynamically query a System.Text.Json.JsonDocument</Description>
<PackageTags>system;linq;dynamic;core;dotnet;json</PackageTags>
Expand Down

0 comments on commit bb9c03c

Please sign in to comment.