-
-
Notifications
You must be signed in to change notification settings - Fork 507
Replace JSON.NET with System.Text.Json across the codebase #2135
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
base: main
Are you sure you want to change the base?
Changes from 31 commits
d64cd62
13aa277
47f134e
9f7914b
4559885
6be3932
3890cb4
acd90ef
5494e58
7415334
9a016f5
26e26a4
b261663
7c40963
18d4850
c870828
2635b2e
2e33229
86734e3
5dece58
f5df2e1
0f0a62e
aeac7b8
6e9c72d
716533b
f2183e1
5bdb52e
b80f6f2
1629973
d2466e4
e7004d6
70728e5
4bab7ac
32262f1
1ddcd16
bf1d63b
cd8adf9
4c4b87b
8ae0483
2460812
6572f8e
0327231
658e5a8
f730e38
07dc018
74f36c1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,9 +23,7 @@ | |
| <PackageReference Include="Exceptionless.DateTimeExtensions" Version="6.0.1" /> | ||
| <PackageReference Include="FluentValidation" Version="12.1.1" /> | ||
| <PackageReference Include="Foundatio.Extensions.Hosting" Version="13.0.0-beta3.23" /> | ||
| <PackageReference Include="Foundatio.JsonNet" Version="13.0.0-beta3.23" /> | ||
| <PackageReference Include="MiniValidation" Version="0.9.2" /> | ||
|
Comment on lines
26
to
27
|
||
| <PackageReference Include="NEST.JsonNetSerializer" Version="7.17.5" /> | ||
| <PackageReference Include="Handlebars.Net" Version="2.1.6" /> | ||
| <PackageReference Include="McSherry.SemanticVersioning" Version="1.4.1" /> | ||
| <PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.5" /> | ||
|
|
@@ -34,7 +32,7 @@ | |
| <PackageReference Include="Stripe.net" Version="47.4.0" /> | ||
| <PackageReference Include="System.DirectoryServices" Version="10.0.5" /> | ||
| <PackageReference Include="UAParser" Version="3.1.47" /> | ||
| <PackageReference Include="Foundatio.Repositories.Elasticsearch" Version="7.18.0-beta4.27" Condition="'$(ReferenceFoundatioRepositoriesSource)' == '' OR '$(ReferenceFoundatioRepositoriesSource)' == 'false'" /> | ||
| <PackageReference Include="Foundatio.Repositories.Elasticsearch" Version="8.0.0-preview.elastic-client.0.79" Condition="'$(ReferenceFoundatioRepositoriesSource)' == '' OR '$(ReferenceFoundatioRepositoriesSource)' == 'false'" /> | ||
| <ProjectReference Include="..\..\..\..\Foundatio\Foundatio.Repositories\src\Foundatio.Repositories.Elasticsearch\Foundatio.Repositories.Elasticsearch.csproj" Condition="'$(ReferenceFoundatioRepositoriesSource)' == 'true'" /> | ||
|
Comment on lines
23
to
37
|
||
| </ItemGroup> | ||
| </Project> | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Foundatio.JsonNetis still referenced, but there are no in-repo code references to it. If the goal is to remove application-level Newtonsoft.Json usage, dropping this package reference would reduce unnecessary Newtonsoft dependencies and better match the PR’s stated intent.