com.wallstop-studios.unity-helpers 2.0.0-rc01 → 2.0.0-rc03

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -21,7 +21,11 @@
21
21
  Encoding = Encoding.UTF8;
22
22
  NormalJsonOptions = new JsonSerializerOptions
23
23
  {
24
+ IgnoreReadOnlyFields = false,
25
+ IgnoreReadOnlyProperties = false,
26
+ ReferenceHandler = ReferenceHandler.IgnoreCycles,
24
27
  IncludeFields = true,
28
+ PropertyNameCaseInsensitive = true,
25
29
  Converters =
26
30
  {
27
31
  new JsonStringEnumConverter(),
@@ -32,6 +36,10 @@
32
36
 
33
37
  PrettyJsonOptions = new JsonSerializerOptions
34
38
  {
39
+ IgnoreReadOnlyFields = false,
40
+ IgnoreReadOnlyProperties = false,
41
+ ReferenceHandler = ReferenceHandler.IgnoreCycles,
42
+ PropertyNameCaseInsensitive = true,
35
43
  IncludeFields = true,
36
44
  Converters =
37
45
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "com.wallstop-studios.unity-helpers",
3
- "version": "2.0.0-rc01",
3
+ "version": "2.0.0-rc03",
4
4
  "displayName": "Unity Helpers",
5
5
  "description": "Various Unity Helper Library",
6
6
  "dependencies": {},