elgonzo

Results 144 comments of elgonzo

_Disclaimer: I am just a user of the library and not associated with the project nor its author/maintainer._ Not a bug. It's the default for the [ObjectCreationHandling](https://www.newtonsoft.com/json/help/html/SerializationSettings.htm#ObjectCreationHandling) setting in action....

I am only a user of Newtonsoft.Json and not otherwise associated with the project or its author/maintainer. That said, i would strongly suggest you ponder a possible migration from Newtonsoft.Json...

While i am only a user and not a maintainer of Newtonsoft.Json (but moving away from it in favour of STJ), your problem is essentially with the code il2cpp produces....

To add to the report, according to the [JsonPath draft spec, section 1.4.4](https://datatracker.ietf.org/doc/html/draft-ietf-jsonpath-base-21#section-1.4.4), `.*` is a shorthand/alias for `[*]`. Therefore, `$.*` is equivalent to `$[*]`. However, not only does Newtonsoft.Json...

"Not working" is not an adequate description of the problem you are observing. It's just merely stating the result of the problem you observed. If you did not observe anything...

> does NOT return any objects in Release build but does so in Debug mode I assume "not returing any objects" means that `DeserializeObject` returns `null`. While this is not...

`` is the correct setting to exclude an assembly from trimming. Note however, that the System.Collections.Immutable assembly is _not_ providing the `List` used in the code example in your report....

I am just a user of Newtonsoft.Json (like yourself) and not associated with the project nor its author/maintainer. > any solution for this No, not with the JsonPath support as...

Unfortunately, the official Microsoft documentation doesn't seem to know about a `Microsoft.Reporting.WebForms.ReportHierarchy`. The only MS documentation regarding the `Microsoft.Reporting.WebForms` namespace is regarding SQL Server 2016 (https://learn.microsoft.com/en-us/dotnet/api/microsoft.reporting.webforms?view=sqlserver-2016), which appears to be...

> I wish there is a way to pass 'JsonObject' attribute through JsonSerializationSettings in addition to placing the attribute on the class. That will solve this problem. There is a...