Skip to content

Commit bb9c03c

Browse files
authored
Use different PackageIds for SystemTextJson and NewtonsoftJson projects (#862)
* Use different PackageIds for SystemTextJson and NewtonsoftJson projects * readme
1 parent d548238 commit bb9c03c

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ If it's not possible to add that attribute, you need to implement a custom [Cust
7070
|   **EntityFramework.DynamicLinq** | [![NuGet](https://img.shields.io/nuget/v/EntityFramework.DynamicLinq)](https://www.nuget.org/packages/EntityFramework.DynamicLinq) |
7171
|   **Microsoft.EntityFrameworkCore.DynamicLinq** | [![NuGet](https://img.shields.io/nuget/v/Microsoft.EntityFrameworkCore.DynamicLinq)](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.DynamicLinq) |
7272
|   **Z.EntityFramework.Classic.DynamicLinq** | [![NuGet](https://img.shields.io/nuget/v/Z.EntityFramework.Classic.DynamicLinq)](https://www.nuget.org/packages/Z.EntityFramework.Classic.DynamicLinq) |
73+
|   **Z.DynamicLinq.SystemTextJson** | [![NuGet](https://img.shields.io/nuget/v/Z.DynamicLinq.SystemTextJson)](https://www.nuget.org/packages/Z.DynamicLinq.SystemTextJson) |
74+
|   **Z.DynamicLinq.NewtonsoftJson** | [![NuGet](https://img.shields.io/nuget/v/Z.DynamicLinq.NewtonsoftJson)](https://www.nuget.org/packages/Z.DynamicLinq.NewtonsoftJson) |
7375

7476
## Development Details
7577

src/System.Linq.Dynamic.Core.NewtonsoftJson/System.Linq.Dynamic.Core.NewtonsoftJson.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<PropertyGroup>
55
<AssemblyOriginatorKeyFile>../System.Linq.Dynamic.Core/System.Linq.Dynamic.Core.snk</AssemblyOriginatorKeyFile>
6-
<AssemblyTitle>System.Linq.Dynamic.Core</AssemblyTitle>
6+
<PackageId>Z.DynamicLinq.NewtonsoftJson</PackageId>
77
<Authors>Stef Heyenrath</Authors>
88
<Description>Contains some extensions for System.Linq.Dynamic.Core to dynamically query a Newtonsoft.Json.JArray</Description>
99
<PackageTags>system;linq;dynamic;core;dotnet;json</PackageTags>

src/System.Linq.Dynamic.Core.SystemTextJson/System.Linq.Dynamic.Core.SystemTextJson.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<PropertyGroup>
55
<AssemblyOriginatorKeyFile>../System.Linq.Dynamic.Core/System.Linq.Dynamic.Core.snk</AssemblyOriginatorKeyFile>
6-
<AssemblyTitle>System.Linq.Dynamic.Core</AssemblyTitle>
6+
<PackageId>Z.DynamicLinq.SystemTextJson</PackageId>
77
<Authors>Stef Heyenrath</Authors>
88
<Description>Contains some extensions for System.Linq.Dynamic.Core to dynamically query a System.Text.Json.JsonDocument</Description>
99
<PackageTags>system;linq;dynamic;core;dotnet;json</PackageTags>

0 commit comments

Comments
 (0)