Skip to content

Commit

Permalink
break change: move NewtonsoftEntityIdJsonConverter to NetCorePal.Exte…
Browse files Browse the repository at this point in the history
…nsions.NewtonsoftJson
  • Loading branch information
witskeeper committed Nov 15, 2024
1 parent c0904ce commit 6770c37
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/AspNetCore/NetCorePal.Extensions.AspNetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<ItemGroup>
<ProjectReference Include="..\Domain.Abstractions\NetCorePal.Extensions.Domain.Abstractions.csproj" />
<ProjectReference Include="..\NetCorePal.Extensions.Dto\NetCorePal.Extensions.Dto.csproj" />
<ProjectReference Include="..\NewtonsoftJson\NetCorePal.Extensions.NewtonsoftJson.csproj" />
<ProjectReference Include="..\Primitives\NetCorePal.Extensions.Primitives.csproj" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/AspNetCore/ServiceCollectionExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.DependencyInjection;
using NetCorePal.Extensions.AspNetCore;
using NetCorePal.Extensions.AspNetCore.Json;
using NetCorePal.Extensions.AspNetCore.Validation;
using NetCorePal.Extensions.Domain.Json;
using NetCorePal.Extensions.Dto;
using NetCorePal.Extensions.NewtonsoftJson;
using NetCorePal.Extensions.Primitives;

namespace NetCorePal.Extensions.DependencyInjection;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,7 @@
<ItemGroup>
<PackageReference Include="Newtonsoft.Json"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Domain.Abstractions\NetCorePal.Extensions.Domain.Abstractions.csproj" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using NetCorePal.Extensions.Domain;
using Newtonsoft.Json;

namespace NetCorePal.Extensions.AspNetCore.Json;
namespace NetCorePal.Extensions.NewtonsoftJson;

public class NewtonsoftEntityIdJsonConverter : JsonConverter
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NetCorePal.Extensions.AspNetCore.Json;
using NetCorePal.Extensions.NewtonsoftJson;
using NetCorePal.Extensions.Domain;
using Newtonsoft.Json;

Expand Down

0 comments on commit 6770c37

Please sign in to comment.