Skip to content

Commit c643a4a

Browse files
authoredNov 18, 2023
Feature : Change Newtonsoft.Json to System.Text.Json (#3562)
<!-- Please be sure to read the [Contribute](https://github.com/reactiveui/reactiveui#contribute) section of the README --> **What kind of change does this PR introduce?** <!-- Bug fix, feature, docs update, ... --> Feature #3190 **What is the current behaviour?** <!-- You can also link to an open issue here. --> No support for System.Text.Json **What is the new behaviour?** <!-- If this is a feature change --> System.Text.Json support for Serialization added https://learn.microsoft.com/en-us/dotnet/standard/serialization/system-text-json/migrate-from-newtonsoft?pivots=dotnet-7-0 **What might this PR break?** If other Serializers are used verification of correct serialisation should be confirmed **Please check if the PR fulfills these requirements** - [x] Tests for the changes have been added (for bug fixes / features) - [ ] Docs have been added / updated (for bug fixes / features) **Other information**:
1 parent 8f11df4 commit c643a4a

File tree

53 files changed

+225
-120
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+225
-120
lines changed
 

‎.editorconfig

+3-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ dotnet_diagnostic.SA1006.severity = error
296296
dotnet_diagnostic.SA1007.severity = error
297297
dotnet_diagnostic.SA1008.severity = error
298298
dotnet_diagnostic.SA1009.severity = error
299-
dotnet_diagnostic.SA1010.severity = error
299+
dotnet_diagnostic.SA1010.severity = suggestion
300300
dotnet_diagnostic.SA1011.severity = error
301301
dotnet_diagnostic.SA1012.severity = error
302302
dotnet_diagnostic.SA1013.severity = error
@@ -525,3 +525,5 @@ indent_size = 2
525525
end_of_line = lf
526526
[*.{cmd, bat}]
527527
end_of_line = crlf
528+
529+
vsspell_dictionary_languages = en-US

‎src/Directory.build.props

+5-1
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@
1313
<DefaultPackageDescription>A MVVM framework that integrates with the Reactive Extensions for .NET to create elegant, testable User Interfaces that run on any mobile or desktop platform. Supports Xamarin.iOS, Xamarin.Android, Xamarin.Mac, Xamarin Forms, Xamarin.TVOS, Tizen, WPF, Windows Forms, Universal Windows Platform (UWP) and the Uno Platform.</DefaultPackageDescription>
1414
<PackageDescription>$(DefaultPackageDescription)</PackageDescription>
1515
<Owners>xanaisbettsx;ghuntley</Owners>
16-
<PackageTags>mvvm;reactiveui;rx;reactive extensions;observable;LINQ;events;frp;xamarin;android;ios;mac;forms;monodroid;monotouch;xamarin.android;xamarin.ios;xamarin.forms;xamarin.mac;xamarin.tvos;wpf;net;netstandard;net461;uwp;tizen;unoplatform</PackageTags>
16+
<PackageTags>mvvm;reactiveui;rx;reactive extensions;observable;LINQ;events;frp;xamarin;android;ios;mac;forms;monodroid;monotouch;xamarin.android;xamarin.ios;xamarin.forms;xamarin.mac;xamarin.tvos;wpf;net;netstandard;net462;winui;maui;tizen;unoplatform</PackageTags>
1717
<PackageReleaseNotes>https://github.com/reactiveui/ReactiveUI/releases</PackageReleaseNotes>
1818
<RepositoryUrl>https://github.com/reactiveui/reactiveui</RepositoryUrl>
1919
<RepositoryType>git</RepositoryType>
20+
<NoWarn>$(NoWarn);VSSpell001</NoWarn>
2021

2122
<!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
2223
<PublishRepositoryUrl>true</PublishRepositoryUrl>
@@ -33,6 +34,9 @@
3334
<IncludePackageReferencesDuringMarkupCompilation>true</IncludePackageReferencesDuringMarkupCompilation>
3435
<PublishRepositoryUrl>true</PublishRepositoryUrl>
3536
</PropertyGroup>
37+
<PropertyGroup Condition="$(IsTestProject) != 'true'">
38+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
39+
</PropertyGroup>
3640

3741
<!-- MonoAndroid doesn't seem to want to allow debugging for maintainers -->
3842
<PropertyGroup Condition=" $(TargetFramework.StartsWith('MonoAndroid')) ">

0 commit comments

Comments
 (0)
Please sign in to comment.