-
Notifications
You must be signed in to change notification settings - Fork 39
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
Akka.NET compatibility fixes #204
Conversation
…ier to use in Visual Studio immediate Window
So as it turns out - #199 broke JSON serialization. We now get the following error:
The problem is this call here: HOCON/src/Hocon.Configuration/Config.cs Lines 199 to 202 in 305ed46
Because we can't call cc @IgorFedchenko how can we simplify the object graph here so we don't have these kinds of issues? You're more familiar with the architecture here than I am. |
@Aaronontheweb So while So the issue is that |
Also, there is another issue that we will get with serialization: since I think we could do something with it - but do we need config to be Json.NET serializable? Because config has |
Actually, even without Root property serialization (for example with So I really suspect that current implementation was not serializable with Json.NET from the beginning. Considering the fact that each I can create an issue and work on making objects serializable in this library. Maybe we will also need to add |
Let's do that in the short run as a work-around, but open a bigger issue for rearchitecting / simplifying the HOCON data structures internally. |
@Aaronontheweb Will work on the last one today |
@IgorFedchenko thanks Igor - I'll get this test to pass so we can move forward with the stand-alone integration in Akka.NET. |
…ialization issues outside of xUnit
moved DebuggingExtensions into default Hocon namespace to make it easier to use in Visual Studio immediate Window