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

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,6 +21,9 @@
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,
25
28
  Converters =
26
29
  {
@@ -32,6 +35,9 @@
32
35
 
33
36
  PrettyJsonOptions = new JsonSerializerOptions
34
37
  {
38
+ IgnoreReadOnlyFields = false,
39
+ IgnoreReadOnlyProperties = false,
40
+ ReferenceHandler = ReferenceHandler.IgnoreCycles,
35
41
  IncludeFields = true,
36
42
  Converters =
37
43
  {
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-rc02",
4
4
  "displayName": "Unity Helpers",
5
5
  "description": "Various Unity Helper Library",
6
6
  "dependencies": {},